When i do simultaneous http request(monkey clicks) is made on the web application i am getting following exception like
Jul 9, 2012 11:05:23 PM org.apache.catalina.core.StandardContextValve throwable
WARNING: Exception Processing ErrorPage[exceptionType=org.apache.jasper.JasperException, location=/jsp/content/utils/error.jsp]
ClientAbortException: java.net.SocketException: Broken pipe
at org.apache.catalina.connector.OutputBuffer.doFlush (OutputBuffer.java:333)
at org.apache.catalina.connector.OutputBuffer.flush(O utputBuffer.java:299)
Cause : The warning log basically means that the connection to the client browser is aborted before the response is fully transferred. It is a harmless warning as it can be due to transient network problems or the browser aborts/refreshes the page before it loaded.
Is there any specific configuration in tomcat(sever side) to solve the problem? Please help me