RE: Accumulation of Request Processors objects causes tomcat stuck?

2009-12-17 Thread motit
When using the same executer for two connectors which one is standard and the other is NIO, can we benefit from the the NIO connector at all? As for my understanding the NIO conector has a single worker thread. Thanks in advance Moti Caldarale, Charles R wrote: > >> From: Michal Singer [mailto

Re: Tomcat Service

2009-03-01 Thread motit
We precompiled all our JSPs. supareno wrote: > > motit, > > will it possible to tomcat to compile jsps without a jdk? > tomcat and a jre has ever been discussed here: > > http://www.mail-archive.com/users@tomcat.apache.org/msg50300.html > > hope th

Tomcat Service

2009-03-01 Thread motit
Hi, According to Tomcat bin/service.bat file, the environment variable JAVA_HOME needs to be existed, otherwise the service is not installed. The problem is that I want to use only the JAVA JRE installation (1.6.0, update 12) on that machine. I manually add the bin/server folder to that JR

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 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

Using precompiled JSPs

2008-12-22 Thread motit
Hi I am using tomcat 6. I compiled my JSPs (using tomcat’s org.apache.jasper.JspC) and located them at the same place as all my classes in the WAR (WEB-INF/classes). When running tomcat and browsing to some JSP files, I found out the tomcat translate the JSPs to servlets and compile them again und