Subj : Re: including the js.jar in my project? To : jupp4711 From : Igor Bukanov Date : Wed Aug 18 2004 04:49 pm juppi wrote: ..... > My question: > Can I solve this problem in the way of including the Rhino Sources? (I already changed all package names and includes by a small program) During code generation and lazily initialization of classes Rhino explicitly uses strings with package names that refer to its classes. You have to change all such strings to match the altered package name. I suggest to search for org.mozilla.javascript and org/mozilla/javascript and make sure that all of then are altered to the new package name. Regards, Igor .