Is it possible to configure the http connector for only one thread ever?
I am trying to do so but having problems... it seems to not allow a
value less than the default of ten(10) threads. Any ideas? Here is the
config I am trying*:
<Connector port="12080"
maxHttpHeaderSize="8192"
maxThreads="1"
minSpareThreads="1"
maxSpareThreads="1"
acceptCount="2"
enableLookups="false" redirectPort="8443"
connectionTimeout="20000"
disableUploadTimeout="true"
emptySessionPath="true" />
* I have tried other values in the threads section, which do not work
also, but this seems the most logical to me.