jikes as JSP compiler in Jasper/Tomcat 4.0.3

2002-05-22 Thread Rossen Raykov
I'm trying to use jikes as a JPS compiler in Tomcat 4.0.3 but it is receiving extra parameter -encoding UTF8 which is braking the compilation process. I'm using JDK 1.3.1_01 on Solaris 8 but the same result I had also with JDK 1.4.0. In my per server web.xml I have: -- CUT --- servlet

Re: jikes as JSP compiler in Jasper/Tomcat 4.0.3

2002-05-22 Thread Phillip Morelock
weird... download the tomcat sources and check out the class org.apache.jasper.compiler.JikesJavaCompiler See the method compile() and note the comment on line 193, and 203 -- //XXX - add encoding once Jikes supports it odd -- i would advise you check out the sources in this package

Re: jikes as JSP compiler in Jasper/Tomcat 4.0.3

2002-05-22 Thread Phillip Morelock
so is it working and giving the debug message, or is it not working at all? if you're looking for a starting point i would recommend org.apache.jasper.compiler.Compiler also if you're looking for source spots. On 5/22/02 12:17 PM, Phillip Morelock [EMAIL PROTECTED] wrote: weird...