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();
}
}