Hello everybody! I have Tomcat 4.x integrated with IIS 5. I would like to activate a pool of threads to serve all requests. I tried to add in the server.xml the following lines:
Connector className="org.apache.tomcat.service.PoolTcpConnector"> <Parameter name="handler" value="org.apache.tomcat.service.connector.Ajp13ConnectionHandler"/> <Parameter name="port" value="8009"/> <Parameter name="max_threads" value="30"/> <Parameter name="max_spare_threads" value="10"/> <Parameter name="min_spare_threads" value="5" /> </Connector> I want to use Ajp13 protocolol so I used Ajp13ConnectionHandler class instead of Ajp12ConnectionHandler". Anyway these settings don't work in Tomcat 4.x but only in Tomcat 3.x and with Ajp12 protocol. Why? How can I obtain the same effect in Tomcat 4.x? I would like to set in Tomcat 4.x all the properties indicated above (max_threads, max_spare_threads, etc)... Thanks everybody in advance! Luca