Web services come in over HTTP, thus changing the max threads allowed for HTTP should
increase the number of allowed connections. You can set this in
server/xxx/deploy/jboss-web.deployer/server.xml, change maxThreads:
<Connector port="8080" address="${jboss.bind.address}"
| maxThreads="250" maxHttpHeaderSize="8192"
| emptySessionPath="true" protocol="HTTP/1.1"
| enableLookups="false" redirectPort="8443"
acceptCount="100"
| connectionTimeout="20000" disableUploadTimeout="true"
/>
Note that each connection uses its own thread so while the only limit is the number of
threads that the operating system can support, too many threads will cause contention
issues. The maximum practical number of threads depends on your hardware - mores
cores/CPUs and/or faster CPUs wcan handle more threads.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4221603#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...