For an unconnected and bound DatagramSocket, the receive method call (with SO_TIMEOUT disabled) failed unexpectedly with the following Exception.
java.net.SocketException: socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:136)
at java.net.DatagramSocket.receive(DatagramSocket.java:712)
Also I've not closed the socket explicitly.
This error occurred in Windows Server 2008 with JRE-6.
Even on calling DatagramSocket.close(), recreating a new DatagramSocket at the same socket address failed too.
Can you please let me know the possible cause(s) for the error?