Subj : Re: Still can't get Rhino debugger to work under servlet To : netscape.public.mozilla.jseng From : igor.bukanov@gmail.com Date : Thu Sep 01 2005 12:02 pm Jon Brisbin wrote: .... > org.mozilla.javascript.tools.shell.Main.exec( > new String[] { "-e", > scriptStr } ); .... This is the problem: you use Rhino shell from your application to execute your scripts. Puting aside the question of why do you need this since calling Context.evalString is so much simpler then using non-public API which are subject to change without notice, the solution is to replace ctxFac.call by org.mozilla.javascript.tools.shell.Main.shellContextFactory.call. Regards, Igor .