Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. String serverAddress = (Read value from configuration file) //already done
  2. boolean serverAvailable = (Check if the server serverAddress is available)//has to be implemented
  3. (Here comes the logic which depends on serverAvailable)
share|improve this question

4 Answers

up vote 21 down vote accepted

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)
share|improve this answer
12  
Beware that this doesn't always work! From the docs: "This method first tries to use ICMP (ICMP ECHO REQUEST). When first step fails, a TCP connection on port 7 (Echo) of the remote host is established." I have found that many Android devices don't support ICMP, and many servers don't accept TCP connections over port 7. isReachable() then simply times out while the server is reachable. – Paul Lammertsma Aug 9 '11 at 7:46

Are you working with HTTP? You could then set a timeout on your HTTP connection, as such:

private void setupHttpClient() {
    BasicHttpParams httpParams = new BasicHttpParams();

    ConnManagerParams.setTimeout(httpParams, CONNECTION_TIMEOUT);
    //...

    ThreadSafeClientConnManager cm = new ThreadSafeClientConnManager(
            httpParams, schemeRegistry);
    this.httpClient = new DefaultHttpClient(cm, httpParams);
}

If you then execute a request, you will get an exception after the given timeout.

share|improve this answer

Oh, no no, the code in Java doesn't work: InetAddress.getByName("fr.yahoo.com").isReachable(200) although in the LogCat I saw its IP address (the same with 20000 ms of time out).

It seems that the use of the 'ping' command is convenient, for example:

Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec("ping fr.yahoo.com -c 1"); // other servers, for example
proc.waitFor();
int exit = proc.exitValue();
if (exit == 0) { // normal exit
    /* get output content of executing the ping command and parse it
     * to decide if the server is reachable
     */
} else { // abnormal exit, so decide that the server is not reachable
    ...
}
share|improve this answer
4  
Seen as this is tagged Android, I'd like to save anybody the effort of trying this as opening raw sockets on Linux requires root permissions. Hence, it will not work on most unrooted devices. I have found it to work several HTC devices, but others simply return "ping: icmp open socket: Operation not permitted". – Paul Lammertsma Aug 9 '11 at 7:43

Send an ICMP ECHO REQUEST packet just like ping does.

See:--Good old Wikipedia

You should be able to clone most of the C code from the "ping.c" source of your favourite Linux distribution.

You can find the original ping source code here:- ping.c

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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