Login several users with one second between each login. after the 25th user, the users begin to experience poor performance, to the point where some users are grouping "page cannot be displayed" errors and eventually the system catches up.
If you are experiencing similar behavior during your performance testing with Webtop on Tomcat, one of the reason might be with maxprocessors parameter. this needs to be set to a higher value depending on the number of users you are using.
Please note that this is not a Documentum issue. Please refer to Tomcat documentation if you need more information about Tomcat settings.
In the server. xml file in the conf directory there are setting associated with the port that Tomcat uses-as an example lets use 80.
Port = "80" minprocessors = "5" maxprocessors =" 1000 ″
Enablelookups = "true" redirectport = "8443 ″
Acceptcount = "10" DEBUG = "0" connectiontimeout = "20000"/>
In this second example (see above) has 1000 processors and connectiontimeout of 20000 (or 20 seconds ).
After the configuration changes, you shoshould no longer receive the "no connections available" error.
Again, this is not a Documentum issue. Please refer to Tomcat documentation if you need more information about Tomcat settings.