java.net.SocketException: Connection reset by peer: socket write error
| at java.net.SocketOutputStream.socketWrite0(Native Method)
| at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
| at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
| at org.jboss.remoting.transport.bisocket.BisocketClientInvoker$PingTimer
| Task.run(BisocketClientInvoker.java:636)
| at java.util.TimerThread.mainLoop(Timer.java:512)
| at java.util.TimerThread.run(Timer.java:462)
|
This is just the server trying to ping your client.
When you have a connection opened, the server will ping the client from time to time. As
you're not closing the connection you're getting this error.
If you close the connection (which is the expected behavior) you won't have any ping
failing under regular circumstances.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4174363#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...