ClientAbortException: java.net.SocketException:Broken pipe

Realiavomonna

New Member
There is a web application in which SOAP request is sent and its SOAP response is recieved. What happening is after getting SOAP response successfully, we are trying to include the display page through below code: \[code\]1. RequestDispatcher rd = request.getRequestDispatcher(uri); 2. rd.include(request, response);\[/code\]where uri is the location of the display page.In second line, exception is coming \[code\]ClientAbortException: java.net.SocketException:Broken pipe\[/code\]Any idea what is wrong here?
 
Back
Top