The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
28 views

Does SocketChannel.close() close the socket also?

I have a server program that needs to close any connections that remain when the server is shutting down. I know I need to call SocketChannel.close(). My question is if I also need to close the Socket ...
0
votes
2answers
35 views

SelectionKey iterator.remove() throws UnsupportedOperationException and infinite loop

I have a method that opens a connection, queries a site, gets the number of pages and then uses NIO to concurrently retrieve all of the pages. The first query is done using URLConnection and works ...
-1
votes
1answer
36 views

java.nio.channels.Selector.select() returns zero

I'm trying to find out, why the selector does not work. Here is the code: //SocketChannel ch //java.nio.channels.Selector impl //Object session SelectionKey sk = ch.register(impl, 0x01, session); int ...
0
votes
0answers
26 views

async url getter using SocketChannel with one thread only

so, i'm trying to write http url getter which operates in one worker thread only, the idea is to use Selector & SocketChannel. but since i didn't use these classes before i have some doubts. ...
0
votes
3answers
61 views

Cannot extract correct information from message received through SocketChannel

I am sending a string which has been converted into bytes using a DataOutput stream // creates a client socket which connects to the first successor's server. Socket clientSocket = new Socket(host, ...
0
votes
0answers
59 views

SocketChannel.read() doesn't read anything into the bytebuffer

I faced a problem the other day when doing a socketChannel.read( ByteBuffer target ). The size of the target when initialised was 65535. But ultimately during one of the read operations, when more ...
0
votes
1answer
110 views

how to switch blocking mode of socketchannel?

I use SocketChannel to receive TCP stream from server on client side. For example: Selector selector=Selector.open(); SocketChannel mychannel=SocketChannel.open(new InetSocketAddress(ip,port)); ...
0
votes
0answers
147 views

how to read line from tcp stream with a socketchannel?

I am working on a c/s program.Server is editted with C++,and a socket on server side is writing TCP stream to client side like this: POST /DLNA/PROXY/FORWARD HTTP/1.0 From: ...
0
votes
1answer
238 views

Java echo server client using IO multiplexing

I am relatively new to both client server and java programming. Have an assignment to do and I'm stuck with this program to write an echo client and server in java. I've always found my answers here ...
0
votes
1answer
44 views

can we use selector concept in client side programming

I am developing an android application where it has to talk to multiple TCP based servers in run time. Now i am using java sockets to communicate and threads to handle multiple clients. But there is a ...
2
votes
2answers
896 views

Socket vs SocketChannel

I am trying to understand SocketChannels, and NIO in general. I know how to work with regular sockets and how to make a simple thread-per-client server (using the regular blocking sockets). So my ...
0
votes
3answers
184 views

Java nio read() return -1

it's not my first time trying to understand this issue but i hope it will be the last one: some background: i have a Java SocketChannel NIO server working in non-blocking mode. this server has ...
0
votes
0answers
13 views

client that talks to a bunch of remote servers using socketchannels

Please give me some suggestions how to implement a client where it communicate with multiple servers at same time using socket channels.
2
votes
2answers
145 views

Java overhead with threads. Should I use sockets or socketchannels? [closed]

I have two designs for an instant message program that I'm writting in Java The first idea uses 2 separate threads. The first thread overlooks the gui and sends out the instant message data through ...
0
votes
1answer
191 views

Java NIO read() End Of Stream

I'm using Java NIO in to accept, read and write in my server. In the documentation it said that the SocketChannel.read() function will return the number of bytes read from socket, and -1 if it reach ...
0
votes
1answer
151 views

Java NIO SocketChannel read pre-defined bytes number

I have a Java NIO socket server. The server is getting JSONObjects from remote clients. i'm using the SocketChannel.read(ByteBuffer) method in order to read from the channel. each message ends with ...
-4
votes
2answers
111 views

how to write char array to java socketchannel

how to write char array to java socketchannel. I am not able to write the char data to socketchannel as it takes ByteBuffer.
0
votes
1answer
153 views

can we use java socketchannel to communicate with c based TCP server

can we use socketchannel to communicate with c++ based TCP server
0
votes
1answer
132 views

SocketChannel: interrupt close all open channels

I have the following scenario: A server open's a ServerSocketChannel and accept client connections. Every connection (socketA) is handled in a new thread. Inside the thread I open a new ...
2
votes
1answer
133 views

Is there a way to de-register a selector on a socket channel

This is a pretty straight forward question, but I have found a need to unregister a selector overlooking my socket channel for java. SocketChannel client = myServer.accept(); ...
-1
votes
1answer
190 views

java nio socketchannel: client to multiple servers

my project is actually pretty basic, but I just can't find the right information for it (ie: I can only find how to create a server that accepts multiple clients). The idea is quite simple: I want to ...
0
votes
1answer
248 views

What are the Netty Channel state transitions?

Netty channels have multiple states but I am unable to find any documentation on the actual state transitions. The closest to any documentation on this that I could find for Netty 3.2.x system is ...
0
votes
1answer
51 views

channel for a client server application

I have client server program for transfer of data using windsock but i need something like a client - channel - server in which channel will retrieve the request from the clinet or server will process ...
0
votes
2answers
105 views

Sending data to a client through a SocketChannel after he has closed his

I have a client and a server application where the client sends a byte of data that signals that the user has closed the client window and terminated the client program. The problem is that the server ...
0
votes
1answer
228 views

NIO Server/Client sending image problems

Hey guys i have been trying to make a NIO server/client program. My problem is that the server only sends 14 bytes then it won't send anything more. I've sat so long with this that i really can't see ...
1
vote
0answers
121 views

Android client app talk to normal multiple thread server using socketChannel

I have a android JAVA application which talk to third party server with normal TCP serversocket(multiple threading), Will it work if I use socketChannel client in the android app? the app used to be ...
1
vote
1answer
188 views

Getting java.nio.channels.CancelledKeyException without explicit cancellation of the key

I have been getting Getting java.nio.channels.CancelledKeyException thrown from: at sun.nio.ch.SelectionKeyImpl.ensureValid(SelectionKeyImpl.java:55) at ...
0
votes
2answers
261 views

how to use netty to transmit the large byte stream(like a image) in a socket service

My server provides socket service for the client. My server's DecoderHandler extends from FrameDecoder. When my client sends small data (bytes less than about 1024) to the server, the server decodes ...
0
votes
3answers
1k views

How to get data from TCP socket into a ByteBuffer

I need to get incoming data from a socket into a ByteBuffer and I do not know how to do it. I am new to this field and therefore not sure of the best way to start. I found the following but that is ...
0
votes
1answer
128 views

Handling connection given a ServerSocketChannel restart when a client is already open

My SwingWorker's doInBackground() creates (and registers with OP_ACCEPT) a fresh ServerSocketChannel when the user clicks the "Connect" button. When a client isAcceptable(), the SwingWorker ...
0
votes
1answer
164 views

Any java libs using SocketChannel client code?

I've looked at a number of open source java networking libs (jdbc drivers, apache commons net etc) and I've yet to find a library that makes usage of SocketChannel for other than simple use cases (V3 ...
0
votes
1answer
210 views

Java nio server client asynchonous

I made a server myself using java nio and a selector. I can receive the data and answer directly from the client if needed. But now I want a thread that will process data, and anytime it will send ...
1
vote
1answer
1k views

How correctly close SocketChannel in Java NIO?

I have a simple non-blocking server with main loop: try { while (selector.select() > -1) { // Wait for an event one of the registered channels // Iterate over the set of keys ...
0
votes
2answers
479 views

Java NIO: Read data from Channel which does not contain any data. How do I handle this situation?

Java code below: import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; public class Test { public static void ...
0
votes
2answers
497 views

Java NIO. Why flip() method breaks my program?

Java code below: import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; public class Test { public static void ...
0
votes
1answer
271 views

Java nio Reading SocketChannel on a Selector

I have a small server application which receives connections from multiple clients. The clients will connect, send a message and disconnect, there is no response sent back. I'm using a ...
0
votes
1answer
827 views

Java NIO ByteBuffer : read the message size on head before read the complete message

I'm making a java NIO server which receive messages, each message have its size on the head of the message, that why I'm reading first into a buffer which have default size(44), then get the complete ...
1
vote
4answers
2k views

Java NIO. SocketChannel.read method all time return 0. Why?

I try understand how works java NIO. In particular, how works SocketChannel. I wrote code below: import java.io.*; import java.net.*; import java.nio.*; import java.nio.channels.*; public class ...
0
votes
2answers
926 views

Java SocketChannel read the messages of unknown length

SocketChannel channel = (SocketChannel) key.channel(); ByteBuffer buffer = ByteBuffer.allocate(1024); int numRead = -1; try { numRead = channel.read(buffer); ...
1
vote
1answer
940 views

java.nio.channels.IllegalBlockingModeException while reading content from client through a channel

Am very new to NIO am building a chat application i got connection in all the client but while reading content from client i got java.nio.channels.IllegalBlockingModeException. please help me here is ...
0
votes
1answer
836 views

Java SocketChannel register() for multiple OP codes is never selected

I've built a Selector-based system in Java that can accept multiple clients. It has a ServerSocketChannel registered under OP_ACCEPT, which accept()s the incoming connection and registers the ...
1
vote
1answer
209 views

ConcurrentHashMap not inserting the non null key value pair upon calling the put method

I am using a ConcurrentHashMap to cache task that I am processing on a SocketChannel. The StreamTask is a Runnable that is use to reschedules itself if the round trip threshold is elapse during client ...
0
votes
2answers
2k views

PubNub best practice: How to manage private rooms?

I'm learning pubnub and I read their documentation but I just can't find how to manage a multi room chat box. By default, a channel can be listened by anyone. Subscribing to it and publishing on it ...
0
votes
1answer
190 views

how to tell whether a connection is established in java?

I tried to build a socket channel between two emulators in android. I wrote the following code: public SocketChannel connect2node(String ip, int port) { SocketChannel client = null; ...
0
votes
1answer
959 views

How to communicate between non-blocking client and non-blocking server through only one SocketChannel

I'm trying to write a non-blocking client and non-blocking server with requirements: Server just listens to clients and send back to them what it has received Client can send message to server at ...
1
vote
1answer
527 views

Android: Find peers on Wifi Network

I'm trying to figure out how to search for other devices logged into a wifi network that are hosting the application on a specific port. How can I detect the presence of these other devices without ...
1
vote
1answer
2k views

Sending multiple messages through only one SocketChannel

After reading this tutorial: http://rox-xmlrpc.sourceforge.net/niotut/ (it's about writing non-blocking server and client, and I read NIO part, skiped SSL part), now I'm trying to rewrite my own ...
2
votes
1answer
381 views

Android - How to keep connection with server for a long time

I wrote a chat application for Android using SocketChannel. It connects successfully with the server and all features work. But after a long time since I logged in (about 2-3 hours), I try to send a ...
0
votes
1answer
243 views

is Java SocketChannel write(ByteBuffer source) in Android different in windows?

When i debug code contain SocketChannel write in Android, i got IllegalArgumentException, but the same code in windows no this exception, is there difference between Android and windows in ...
1
vote
1answer
179 views

Concurrent read() of separate SocketChannels slow for large ByteBuffers

I have written a Java server for remote storage (an iSCSI Target). The client can write data by sending sequences of packets carrying the data payload. These packets consist of a fixed-length header ...

1 2