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

I've created a simple method in attempts to determine if a socket is open on a remote machine. Here is my code:

public static Boolean isPortAvailable( int port, String bindAddr  ) {
    try { 
        System.out.println("IP: " + InetAddress.getByName(bindAddr ));
        ServerSocket srv = new ServerSocket(port, 0, InetAddress.getByName(bindAddr ) );  

        srv.close();  
        srv = null;  
        return true;  

    } catch (IOException e) {  
        return false;  
    }
}  

Passing it these two args:

String bindAddr  = "remotemachinename";
int port = 1719;

It continues to tell me the port is not available but if I try netstat -a on the machine I see it's clearly NOT in use. Am I missing something?

share|improve this question
As both answers are telling you, you have completely misunderstood what that ServerSocket constructor does. You can't use it to open a ServerSocket on a remote machine. How would that even work? – Tom Anderson Oct 3 '11 at 17:56

2 Answers

up vote 3 down vote accepted

If you want to contact a listening (server) socket you should use a Socket not a ServerSocket. See the ServerSocket javadoc, the third parameter of the ServerSocket constructor is a local address to bind to, not a remote address to connect to.

Try this:

try {
    InetAddress addr = InetAddress.getByName(bindAddr);
    Socket sock = new Socket();
    SocketAddress sockaddr = new InetSocketAddress(addr, port);
    int timeout = 1000;   // wait for 1 second = 1000ms (adapt to your use case)
    sock.connect(sockaddr, timeout);
} catch (UnknownHostException e) {
} catch (SocketTimeoutException e) {
    // nobody's listening or willing to accept our connection...
} catch (IOException e) {
}
share|improve this answer
That did it...not sure how I missed that. Thanks again! – Paul Oct 3 '11 at 18:43

What you are missing is ignoring your IOException which is probably telling you, you cannot pretend to be another server. I suggest you only ignore select expected exceptions

Use a Socket as @fvu suggests and return a boolean not a Boolean

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.