I am using Tomcat 4.1.24 with Coyote JK2 connector. Although the my servlet
is loaded pretty quickly, it is taking a long time for Tomcat to say the
following:
----------------------------------------------------------------------
INFO [main] (ChannelSocket:333) - JK2: ajp13 listening on
0.0.0.0/0.0.0.0:7002
INFO [main] (JkMain:367) - Jk running ID=0 time=10/130 config=d:\Program
Files
\Apache Group\Tomcat 4.1\conf\jk2.properties
-------------------------------------------------------------------------
Any requests I send to servlet before this hang until Tomcat is completely
up. Here is the server.xml entry for this connector. Should I be using
Coyote HTTP Connector instead. Right now, I am in development phase.
<!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="7002" minProcessors="1" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="10" debug="0" connectionTimeout="20000"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
Thanks
Ravi