0
votes
1answer
48 views

How to pass data between Channels in netty?

I am writing a simple routing application. The idea is that I have servers or source nodes that receive transient clients connections that last for a period of x time. The messages received are ...
2
votes
3answers
92 views

How to design Java server with NIO?

Suppose I am writing a server. The server accepts clients connections, reads requests from the network, process them and sends back the results. Suppose also that I would like to handle all that ...
-1
votes
1answer
203 views

Event driven server in Java

I am trying to write an event driven HTTP web server. Because I will be using only one thread, the events have to queued up and handled asynchronously (I am also using Java NIO). However, I am stuck ...
0
votes
1answer
101 views

What filter should I use to send ArrayList by using apache-MINA

I have server and client applications with apache-mina framework. I need to send a large arraylist (contains 10000 custom objects) from server to client. I first thought to use GSON strings to pass ...
0
votes
0answers
127 views

Apache MINA Server messages outflow (Client messages inflow) architecture

Understanding the Server/Client architecture illustrated in the user documentation for Apache MINA - Server Architecture and Client Architecture - is pretty straightforward. It only covers the ...
1
vote
3answers
91 views

404 Not Found page displayed when accessing a lot of the Apache MINA links [closed]

I have to embed a network layer into my Java application in order to enable file transfer from a server to multiple client connections. Having come to the conclusion that Java NIO would be the best ...
0
votes
1answer
130 views

Java Network Game (might use NIO)

As part of a learning experiment, I want to make a network application. I'm still learning about multithreading, and I've made a simple multithreaded "game" that involves drawing sprites on the ...
0
votes
2answers
410 views

java nio client side use multiplexing

My application instance has both client and server. and now,there are 4 instances running. Currently in each instance server uses nio multiplexing to accept and broadcast data. When client writes to ...
0
votes
1answer
289 views

android, multiplayer game, device powerful enough to host server and client?

Has anyone tried hosting a multiplayer game server on an android device? I'm thinking 1 thread each for server and client (using NIO for both), and probably 1 more for an offloading thread. I'm ...
8
votes
3answers
6k views

How does the Netty threading model work in the case of many client connections?

I intend to use Netty in an upcoming project. This project will act as both client and server. Especially it will establish and maintain many connections to various servers while at the same time ...
0
votes
1answer
587 views

DelimiterBasedFrameDecoder, how does it works?

i premiss that i am a newbie of netty; i am trying to create a client to an external server, this server outputs messages that terminates with 0x0d so i decide to use the DelimiterBasedFrameDecoder to ...
1
vote
1answer
414 views

What are possible ways to send Game/Simulation State with javaNIO?

i heard this phrase quite often to "send the game state or simulation state " in network game/simulation realm and my question is stem from that and i really need to know how? . I m working on real ...
0
votes
1answer
395 views

Bufferwriting/sending messages problem in javaNIO

My problem is concerning JAVANIO client server message passing,i m unsure about defining the problem technically but: it seems that buffer is caching the data and when it is done then it is sending ...
0
votes
2answers
669 views

Selector.close throwing a java.util.ConcurrentModificationException on AIX platforms

I am using java nio selector, and seem to hit the following issue randomly but consistantly in my application while calling the selector.close. The selector object is being accessed by a single thread ...
2
votes
5answers
4k views

Java NIO: Sending large messages quickly leads to truncated packets and data loss

I've got this nasty problem where sending multiple, large messages in quick succession from a Java (NIO) server (running Linux) to a client will lead to truncated packets. The messages have to be ...
2
votes
6answers
2k views

Why do SocketChannel writes always complete for the full amount even on non-blocking sockets?

Using the Sun Java VM 1.5 or 1.6 on Windows, I connect a non-blocking socket. I then fill a ByteBuffer with a message to output, and attempt to write() to the SocketChannel. I expect the write to ...