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

I trying to realize RTSP over HTTP. I have a problem with connection to RTSP camera. Maybe, someone can help me?

When i call socketChannel.isConnected() - it is always false

My code:

//constructor 
public RTSPClient(InetSocketAddress remoteAddress,
        InetSocketAddress localAddress, String address) {
    this.remoteAddress = remoteAddress;
    this.localAddress = localAddress;
    this.address = address;

    sendBuf = ByteBuffer.allocateDirect(BUFFER_SIZE);
    receiveBuf = ByteBuffer.allocateDirect(BUFFER_SIZE);
    if (selector == null) {
        // Selector
        try {
            selector = Selector.open();
        } catch (final IOException e) {
            e.printStackTrace();
        }
    }

    startup();
    sysStatus = Status.init;
    shutdown=new AtomicBoolean(false);
    isSended=false;
}

public void startup() {
    try {
        socketChannel = SocketChannel.open();
        socketChannel.socket().setSoTimeout(30000);
        socketChannel.configureBlocking(false);
        socketChannel.socket().bind(localAddress);
        if (socketChannel.connect(remoteAddress)) {
            System.out.println("Start connection:" + remoteAddress);
        }

   //IT IS ALWAYS FALSE     
    if(socketChannel.isConnected() == false ){
    System.exit(0);
    }

        socketChannel.register(selector, SelectionKey.OP_CONNECT
                | SelectionKey.OP_READ | SelectionKey.OP_WRITE, this);
        System.out.println("Port opened successfully");
    } catch (final IOException e1) {
        e1.printStackTrace();
    }
}
share|improve this question
1  
What have you tried so far that lead to the problem? Also describing the problem might help. – Darin Dimitrov May 23 '10 at 8:40
this is part of code. pastebin.com/ku9JPv4q when i call socketChannel.isConnected() - it is always false – EK. May 23 '10 at 9:00
You'll get better responses if you paste your code into SO (and format it correctly.) I've done this for you. – Stu Thompson Apr 6 '11 at 7:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.