vote up 0 vote down star

Hey all. I have a server written in java using the ServerSocket and Socket classes.

I want to be able to detect and handle disconnects, and then reconnect a new client if necessary.

What is the proper procedure to detect client disconnections, close the socket, and then accept new clients?

flag

3 Answers

vote up 3 vote down check

Presumably, you're reading from the socket, perhaps using a wrapper over the input stream, such as a BufferedReader. In this case, you can detect the end-of-stream when the corresponding read operation returns -1 (for raw read() calls), or null (for readLine() calls).

Certain operations will cause a SocketException when performed on a closed socket, which you will also need to deal with appropriately.

link|flag
vote up -1 vote down

The only safe way to detect the other end has gone is to send heartbeats periodically and have the other end to timeout based on a lack of a heartbeat.

link|flag
Or you could just set the timeout – Pyrolistical Jan 28 at 17:41
I have a thread which looks at each connection to see how long it has been since the last packet was read. (heartbeat or otherwise) It it has been too long, I close the connection. – Peter Lawrey Jan 29 at 7:19
vote up -1 vote down

The sun page is down (or i just can't access it) so i can't confirm it, but if i remember correctly just need to do this

(...)
(Your code here)
} catch (SocketException e) {
 tryToConnect() // This is your code to try to connect, not an inbuilt function.
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.