Subj : Help on debugger launching from a java application. To : netscape.public.mozilla.jseng From : harun hasdal Date : Wed Sep 21 2005 01:59 am Hello, I'm trying to launch rhino js debugger from a java application. The problem is, i could not put objects into context that could be used from the scripts. Example: String asd = "asd"; Object wrappedOut = Context.javaToJS(asd, scope); ScriptableObject.putProperty(scope, "asdStr",wrappedOut); How can i set up the scope and context not in conflict with rhino's and use the debugger with that context? Thanks. .