Tagged Questions
The socketchannel tag has no wiki summary.
4
votes
5answers
701 views
Selector.select() starts an infinite loop
I have a minimal JMS provider, which sends topic messages over UDP and queue messages over TCP.
I use a single selector to handle UDP and TCP selection keys (registering both SocketChannels and ...
4
votes
1answer
1k views
Timeout for SocketChannel
I want to use a SocketChannel and to have a timeout for its read/write methods. I've tried to set a timeout for the Socket that owns my SocketChannel like this :
...
2
votes
3answers
141 views
Java NIO: transferFrom until end of stream
I'm playing around with the NIO library. I'm attempting to listen for a connection on port 8888 and once a connection is accepted, dump everything from that channel to somefile.
I know how to do it ...
2
votes
1answer
156 views
One thread stopping too early regardless of CyclicBarrier
I am aware of the fact that the following code may seem vulgar, but I am new to these things and just tried everything in order to get it to work..
Problem: Even though I am using (possible in a ...
2
votes
3answers
1k views
Java NIO: How to know when SocketChannel read() is complete with non-blocking I/O
I am currently using a non-blocking SocketChannel (Java 1.6) to act as a client to a Redis server. Redis accepts plain-text commands directly over a socket, terminated by CRLF and responds in-like, a ...
2
votes
2answers
254 views
Reliable write to Java SocketChannel
I'd have a question regarding java SocketChannel.
Say I have a socket channel opened in blocking mode; after calling the the write(ByteBuffer) method, I get an integer describing how many bytes were ...
2
votes
1answer
1k views
Java ServerSocketChannel SocketChannel (Callback)
I am trying to learn Java. I would like to implement a simple networked connect 4 game as well as a chat feature.
I want my network logic to be non blocking so after much study I found that ...
1
vote
2answers
86 views
java nio socketChannel read always return same data
In client side, read code:
byte[] bytes = new byte[50]; //TODO should reuse buffer, for test only
ByteBuffer dst = ByteBuffer.wrap(bytes);
int ret = 0;
int readBytes = 0;
boolean fail = false;
try {
...
1
vote
2answers
56 views
SocketChannel.read() blocks indefinitely
I'm having a hard time figuring this one out. I have the following code:
if (selector.select(1000) <= 0) {
return;
}
Set<SelectionKey> selectionKeys = ...
1
vote
2answers
140 views
ReadableByteChannel hangs on read(bytebuffer)
Im working on Instant messenger using java 1.6. IM uses multithreading - main thread, receiving, and ping. For tcp/ip communication I used SocketChannel. And it seems there is a problem with receiving ...
1
vote
1answer
259 views
Java; NIO - reading large amounts of data from a SocketChannel [closed]
I am writing a very simple networking library that I can use for my other projects in the future. Right now, I am having trouble handling reading operations. I have a class that is responsible for ...
1
vote
1answer
315 views
SocketChannel fires isReadable() but nothing to read
I have got a new problem with my Android app. The SocketChannel tells me that it isReadable() but there is nothing to read.
while(running)
{
int readyChannels = 0;
try {
...
1
vote
3answers
1k views
Java SocketChannel doesn't detect disconnection?
I have a socket running, using selectors. I am trying to check to see if my socket is connected to the server or not.
Boolean connected = _channel.isConnected();
and it always returns true. I ...
1
vote
2answers
1k views
Java SocketChannel Eating my bytes
I created a SocketChannel to a remote server to send and receive messages on Tomcat. To receive messages from a remote computer, I used a thread dedicated to task (only this thread will read from the ...
0
votes
1answer
47 views
Convert a blocking Socket object to a SocketChannel's socket?
This might sound weird. I have created a game server based on a thread per socket structure (yes, only one thread per user; responses are sent to clients by worker threads). The thread that I spawn ...
0
votes
2answers
113 views
SocketChannel.write() in a single thread processing multiple clients
my application has a queue with " outgoing network packets" (A POJO with a ByteBuffer and a SocketChannel) inside, consumed by a single thread that writes the data to the SocketChannel.
I do this to ...
0
votes
2answers
202 views
socketchannel.write() becomes very slow when message size is large
In my program using java nio, the socketchannel.write() becomes very slow when it tries to write 10 KB messages consecutively. The measured time for writing a complete 10 KB message is between 160 ms ...
0
votes
3answers
111 views
Java Selector returns SelectionKey with OP_READ without data in infinity loop after writing to channel
I've trouble with my code: i've written simple SocketChannel client with Selector, after starting it successfully reads messages from server (server sends events). But after writing to socket (see ...
0
votes
0answers
40 views
Client Server SocketProgramming by using SocketChannel
I want to write a client server socket programming using socket channel and use to read and write operations.Can anyone suggest a sample code of client and server to help me.
0
votes
0answers
143 views
With a non-blocking SocketChannel, is the affiliated Socket blocking?
I'm developing an Android app, trying to do a non-blocking write from one thread on a socket, while doing a blocking read on another thread. I'm looking through SocketChannel docs and trying to figure ...
0
votes
1answer
302 views
Java NIO Issue/Misunderstanding of how isReadable works
I've found that the NIO is poorly documented at best except for the simplistic case. Even so, I've been through the tutorials and several refactors and ultimately pushed back to the simplest case and ...
0
votes
0answers
246 views
Examples of Asynchronous SocketChannels?
I found this thread on SO about SocketChannels:
Android Web Service Implememnation
Are there any simple examples of using SocketChannel's asynchronously? How can I keep the socket open and do ...
0
votes
1answer
283 views
Writing to SocketChannel in Java repeats unexpectedly
I have been trying to work with NIO SocketChannels for some time now, and I am stumped regarding writing out to a SocketChannel. The following code is from my client:
public class nbClient {
...
0
votes
1answer
238 views
Java trouble with SocketChannel connections
This is a class assignment, so I need hints more than answers.
I have a process running on four virtual linux machines. Each process communicates with two of its neighbors. Each process uses
...
0
votes
1answer
533 views
SocketChannel in Android
I have a question about SocketChannels in Android. This is my code:
SocketChannel socketChannel = SocketChannel.open();
socketChannel.connect(new InetSocketAddress("127.0.0.1", 90));
This code ...
0
votes
1answer
39 views
Validating data received in a non blocking server
I am building a non blocking server using javas NIO package, and have a couple questions about validating received data.
I have noticed that when i call read on a socket channel, it will attempt to ...
-2
votes
1answer
729 views
Problem with Java selector/SocketChannel
I'm having a problem with a multiplayer game. Right now, I'm just trying to get the server to send the current level to the client. The server is definitely sending the data, but it never gets to the ...