0
votes
2answers
21 views

Cometd how to make and subscribe channel dynamically?

I am trying to create a very simple cometD app. Mainly i want to create channels dynamically. First i tried localsession channels and after creating subscribed them via client side javascript. It ...
0
votes
0answers
112 views

Making a multithreaded chat server with sockets

I'm coding server chat using TCP sockets. I implemented public and private messages. Now, how can I make channels? How can I link channels with socket clients? I made a String[] like this: if ...
0
votes
1answer
80 views

Does Java's SocketChannel$read() synchronize the output buffer?

Does Java's SocketChannel.read() method synchronize the output buffer? In other words: is there a lock on the ByteBuffer argument passed to the read(ByteBuffer) method in ...
2
votes
2answers
468 views

Port Unreachable when using Datagram Channel

While using Datagram Channel I get a PortUnreachableException. This is what my Codes look like : This is the sender side //Open a non-blocking socket to send data to Receiver DatagramChannel channel ...
0
votes
1answer
302 views

how do I get Mixer channels layout in java

I thought I can find anything on this great site but now I seem to face the issue with no answer :) Please help! Thing is, I need to play up to 6 different wav files with 1 channel each into 6 ...
0
votes
4answers
837 views

Netty - How to test for client/server version numbers

As part of my protocol, I'd like the client to send its version number when a new connection is established. I'd like this to be done in a separate handler in the pipeline, so please bear with me as ...
0
votes
1answer
2k views

Netty: ClosedChannelException when closing channel

Why when i'm trying to close channel, I got ChannelClosedException thrown? Closing with Channel.close(), exception's stacktrace: java.nio.channels.ClosedChannelException at ...
2
votes
2answers
226 views

I/O Operation On Channels Using ByteBuffer - Performance Comparision

I want to perform I/O operation on channels using ByteBuffer. Finally I came up with three solutions: FileChannel inChannel = new FileInputStream("input.txt").getChannel(); FileChannel outChannel = ...
0
votes
0answers
928 views

RTSP over HTTP client

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: ...