I'm having the problem that the maximum pool size of a SingleThreadModel
servlet is on Tomcat 5.5 limited to 20 instances. I do not know where to configure it in Tomcat 5.5.
My HTTP connector is declared as follows:
<Connector port="8090" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="100"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true" />
Do you know where I could configure this?