I am developing an application which connects to the server. By now the login and data transmission works fine if theserver is available. The problem arises when the server is unavailable. In this case the method sends a login request and waits for the response.
Does anyone know how to check if the server is available (visible)?
The pseudocode of the simple logic that has to be implemented is the following:
He probably needs Java code since he's working on Android. The Java equivalent -- which I believe works on Android -- should be:
InetAddress.getByName(host).isReachable(timeOut)