- 
        1. Request Handlingnickarls Feb 9, 2011 6:22 AM (in response to zzpprk)It's a normal HTTP requets that will be processed in a separate thread. 
- 
        2. Request Handlingzzpprk Feb 9, 2011 6:26 AM (in response to nickarls)Thanks. Is there a limit to the number of concurrent threads that can be created? 
- 
        3. Request Handlingnickarls Feb 9, 2011 6:37 AM (in response to zzpprk)I would assume JBossWeb has some configurable max concurrent connections settings like Tomcats have 
- 
        4. Request Handlingzzpprk Feb 9, 2011 6:44 AM (in response to nickarls)Anybody know what that maximum is and how it can be set? 
- 
        5. Request Handlingwelle Feb 9, 2011 6:48 AM (in response to zzpprk)Yes, the embedded Tomcat server in JBoss has settings for both HTTP and AJP. Look at tip 13 at: http://www.mastertheboss.com/jboss-server/113-jboss-performance-tuning-1.html?start=2 
- 
        6. Request Handlingwelle Feb 9, 2011 6:49 AM (in response to zzpprk)If you tell me exact wich version af JBoss are you running I can point out where the "server.xml" file is located? 
- 
        7. Request Handlingzzpprk Feb 9, 2011 7:13 AM (in response to welle)I am running JBoss on a Unix platform. How can I check the version? 
- 
        8. Request Handlingwelle Feb 9, 2011 7:17 AM (in response to zzpprk)There may be a readme.html in the server installation directory. 
- 
        9. Request Handlingwelle Feb 9, 2011 7:23 AM (in response to welle)Tip of the day. Look in the logfile "boot.log" 
- 
        10. Request Handlingzzpprk Feb 9, 2011 7:23 AM (in response to welle)Yes there is. I am running JBoss 5.1.0.GA. Where is that "server.xml" file? 
- 
        11. Request Handlingwelle Feb 9, 2011 7:27 AM (in response to zzpprk)1 of 1 people found this helpful$JBOSS_HOME/server/XXX/deploy/jbossweb.sar/server.xml XXX = The setup you are using! 
- 
        12. Re: Request Handlingzzpprk Feb 9, 2011 7:40 AM (in response to welle)Thanks. I need a bit more help in understanding this file. We connect to the web service on port 9000. The following extract is from that file. Does it mean that the request will be redirected to port 9001? <!-- A HTTP/1.1 Connector on port 9000 --> <Connector protocol="HTTP/1.1" port="9000" address="${jboss.bind.address}" connectionTimeout="20000" redirectPort="9001" /> And foor port 9001, I have the following. Does that mean that as maximum of 150 requests will be handled at the same time? <!-- SSL/TLS Connector configuration using the admin devl guide keystore --> <Connector port="9001" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" strategy="ms" address="${jboss.bind.address}" keystoreFile="${jboss.server.home.dir}/conf/sapws.keystore" keystorePass="SAP4ever" truststoreFile="${jboss.server.home.dir}/conf/sapws.keystore" truststorePass="SAP4ever" sslProtocol="TLS"/> 
- 
        
 
     
    