Im trying to set the min threads for http in /deploy/jbossweb.sar/server.xml
<Connector protocol="HTTP/1.1" port="8080" address="${jboss.bind.address}"
connectionTimeout="20000" redirectPort="8443" acceptCount="100" maxThreads="200" minSpareThreads="50" />
When i profile the jboss server using either visualVM or jprofiler I only see 6 http threads (seems to increase with load) - I expected minimum 50?
Am I misunderstanding the minSpareThreads option or editing the wrong file?
(using JBoss EAP 5.1.2, JDK 1.6.0_21)