I have created a TCP server-client application in java which exchange periodic messages between them. As part of failure management, i need to detect the failure of either host/client and then call my custom function. Which exception in Java will catch just this part? Will SocketException work here? I want to call failure management only when host/client go down and not on any other issue.

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You need to distinguish between the server going down (being shutdown, resulting in an IOException), the server not being available when you initiate a connection (ConnectException), and the server going offline (imagine a network cable being pulled out). This will usually manifest itself with a SocketTimeoutException or similar.

I would run a process up and try out all the scenarios you expect to handle. You'll have to deal with timeouts differently to explicit disconnects etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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