I have two webapps running on websphere 8, the first is accepting incoming requests, retrieving data from the second webapp and sending the response to the client. The communication is realized with W3C SOAP WebServices via HTTP (Axis2).
While load testing with loadUI, I recognized the following behavior: Sequential requests allow a high load while parallel requests fail almost immediately with a "connection refused" message by the second web application.
The same setup on Tomcat allows a high load in both cases.
The number of maximum open connections is configured to 500, the default thread pool has maximum 20 threads, the default web container has 10 threads.
Does anyone know of any websphere settings that could help me?