This content has been marked as final.
Show 2 replies
-
1. Re: How to handle concurrent web service request?
Thomas Diesler Dec 6, 2004 5:16 AM (in response to KT KT)Of course, the server has no control over how many concurrent requests potential clients will issue. You can however configure tomcat how many requests it should handle concurrently.
<Connector port="8080" address="${jboss.bind.address}" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true"/>
-
2. Re: How to handle concurrent web service request?
KT KT Dec 21, 2004 9:33 AM (in response to KT KT)yes..i agree.. the client should handle unexpected exception...:-)