RE: Using precompiled JSPs

2008-12-28 Thread motit
Thanks, its work. The jsp mapping wasn't set correctly. -- View this message in context: http://www.nabble.com/Using-precompiled-JSPs-tp21124710p21196649.html Sent from the Tomcat - User mailing list archive at Nabble.com. -

RE: Using precompiled JSPs

2008-12-22 Thread Caldarale, Charles R
From: motit [mailto:moti@expand.com] Subject: Using precompiled JSPs I compiled my JSPs (using tomcat's org.apache.jasper.JspC) Did you use the suggested ant script, or did you roll your own mechanism? and located them at the same place as all my classes in the WAR (WEB-INF/classes).

RE: Using precompiled JSPs

2008-12-22 Thread motit
1. see my ant script below 2. I didn’t change the jasper’s package name hierarchy (e.g org.apache.jsp) 3. I did update my war’s web.xml with the jspservet mapping with *.jsp 4. I have assisted by http://tomcat.apache.org/tomcat-6.0-doc/jasper-howto.html target

RE: Using precompiled JSPs

2008-12-22 Thread Caldarale, Charles R
From: motit [mailto:moti@expand.com] Subject: RE: Using precompiled JSPs 1. see my ant script below You should be using the one from the Tomcat doc; yours fails to perform a couple of critical steps. 2. I didn't change the jasper's package name hierarchy (e.g org.apache.jsp) But did

Re: Using precompiled JSPs

2008-12-22 Thread Filip Hanik - Dev Lists
http://people.apache.org/~fhanik/precompile.html Filip motit wrote: 1. see my ant script below 2. I didn’t change the jasper’s package name hierarchy (e.g org.apache.jsp) 3. I did update my war’s web.xml with the jspservet mapping with *.jsp 4. I have assisted by