What type of application? Web app? Standalone client accessing EJBs? Standlone client
sending messages or web service requests? The maximum number of simultaneous requests for
each of these is handled in different ways and in different configuration files. And none
of those are related to the maximum number of simultaneous database connections, which is
handled in yet another config file.
For web apps, max connections is handled by the adding an Executor entry to the server.xml
file (located in server/xxx/deploy/jboss-web.sar). For details:
http://tomcat.apache.org/tomcat-6.0-doc/config/executor.html
For database connections, specify max-pool-size in the *-ds.xml file.
By the way, I hope you are using JBoss AS 5.x, because the configs are different in
earlier versions.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4242308#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...