I\'m using JDK 1.3 (BD-J platform) using tcp sockets.
I seem to be getting some errors half closing on the client end. If I\'m done writing and close the lower socke
You need Socket.shutdownOutput. Closing either the InputStream or the OutputStream of a Socket closes the Socket (crazy, but true).
Socket.shutdownOutput
InputStream
OutputStream
Socket