An open source asynchronous event-driven network application framework written in Java. Its a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients

learn more… | top users | synonyms (1)

0
votes
0answers
17 views

Detecting Connection close in Netty

I am using netty for handling http connections in my server. I want to use Http 1.1 persistent connection. The clients that connect to server are remote wireless resource constrained devices. Their ...
0
votes
0answers
15 views

ClientBootstrap releaseExternalResources() throws an IllegalStateException

I am using netty to connect and disconnect. But I get an exception when I try to disconnect, and I can't quite understand what causes it. I have a global: private ClientBootstrap bootstrap_; When ...
0
votes
1answer
48 views

MySQL COM_EXECUTE_STMT fails with error but the error does not make sense

I'm sending a COM_EXECUTE_STMT message and the server always returns an: Error 1048 - #23000 - Column 'number_tinyint' cannot be null The query is like this: insert into numbers ( ...
0
votes
0answers
11 views

Cannot build Netty

I have clonde netty github repo and try to build it with mvn clean package And I always get the following error: //16:28:06.306 [main] INFO org.ops4j.pax.exam.junit.PaxExam - running test class ...
0
votes
1answer
35 views

No listening socket displayed

I'm writing a Java game server using Netty. I can successfully connect the client from localhost, but I cant from a remote PC. No listening socket is displayed in netstat util. Am I missing something ...
0
votes
1answer
17 views

netty fireWriteComplete actually nothing written to remote

netty 3.x, nio model: the netty IO writing thread will invoke WritableByteChannel.write(ByteBuffer) finally,netty will consider it written successfuly,but actually the bytes are written to a socket ...
0
votes
1answer
24 views

how to get the size of a file presented as channelBuffer

Need to look at the size of a file passed in as ChannelBuffer. Should I use limit() or capacity? is it accurate to the real size?
0
votes
2answers
24 views

(Java/netty) What's the easiest way to send and receive variable-size objects with Netty?

So, I have a Message class, which contains all the information I want to send. However, its contents can vary wildly. What's the easiest way to send and receive (specially the decode/reassembly part) ...
0
votes
0answers
8 views

how netty based server listen to its client and RMI

I'm new in netty and my set-up is client<-->server<--webservice. The client connects to TCP server then the communication is established .A Web service API sends message to TCP server via RMI. ...
0
votes
1answer
20 views

How to configure Netty to have a single worker thread?

Let's assume that we're implementing a service that accesses some shared data, and that there is no way of partitioning those data into portions that can be accessed independently. For this reason, ...
0
votes
0answers
14 views

Netty Framework - Exception occurs while adding content to HTTP Response (Channel Buffer)

I am using the Java HTTP Proxy (LittleProxy) which is developed over Netty framework. In a simple example, I've added a HTTP Response filter to process the image content, and attach back the processed ...
0
votes
0answers
10 views

Netty4.0 + RXTX can't reallly call Executor on Linux

While using the combination of netty 4.0 + RXTX 2.2 on Ubuntu 12.04, the following code will produce a interesting output. If you comment out ctx.write(" ") indicated in the last piece of code, the ...
0
votes
0answers
25 views

How do I listen to interest ops in Netty?

Problems with the Netty thread model. After reading through all the Netty documentation, Javadoc, etc I still feel stumped dealing with this issue. There are two threads that write to the channel. ...
0
votes
0answers
27 views

Netty throws strange exception

i am trying to respond with netty, but it throws an exception that i cant figure out, this is the server code : Main File: package com.edealya.rtb.server; public class EdealyaRTBModule extends ...
1
vote
1answer
42 views

Running discard server on netty

I downloaded netty from here and unzipped/untarred it. Now, I want to run Discard Server, which is the first example in most netty tutorials. If I unjar netty-example-4.0.0.CR2.jar, I can see ...
0
votes
2answers
51 views

How do I handle slow readers in Netty?

In my application I have can have thousands of readers each fetching documents. I need to have the ability to buffer slow readers so that I can move on to handle other readers so that I can get ...
0
votes
0answers
27 views

Can I open a Netty Client Channel on a local port binded by a Netty server in order to perform hole punching?

Here is the problem: I'm trying to send a message from a Netty Server binded port to perform hole punching. I have read many things about it, especially that on unix it is not possible. This would ...
0
votes
1answer
29 views

How to remove ETAG header on play framework 2.1.1? (i'll use akamai)

I'll set akamai in front of my server, so i need to remove ETAG header from my responses. Please, anyone could tell me the easy way to do it? Thanks.
1
vote
1answer
49 views

Netty 4 Outbound Message Handler Closing Connection

I'm experimenting with a custom outbound message handler in Netty 4 and cannot seem to get it to work. The handler just logs a statement and is added toward the bottom of the channel pipeline. My ...
1
vote
1answer
51 views

Migrating sendUpstream in Netty 4

I'm migrating from netty 3 to netty 4. I have a pipeline handler that acts as a classic filter, intercepting/handling noncompliant messages on the way, and shoveling compliant ones upstream. Based ...
1
vote
1answer
44 views

Setting Netty configuration in the play framework?

I'm attempting to enable TCP nodelay in my play server and the only way I've found to do so is through Netty. Netty has a SocketChannelConfig that allows you to enable TCP no delay, but I can't ...
1
vote
1answer
42 views

Java NIO Prevent multiple socket connections from the same PC

I am working on a Client - Server game on Facebook, and I need to prevent players from using two facebook account on the same computer from playing (cheating), The server side is Netty IO and the ...
0
votes
0answers
17 views

using netty as poller and request server ( somekind of network node)

i need to create network server that polles from DB via in house server API (CORBA) each N seconds using build in clients framework . and in response to send http requests to another server. and ...
0
votes
1answer
44 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 ...
0
votes
1answer
11 views

Talking to spdy server with netty client

I want talk to a spdy/2 server in android app with netty. When googled this question, only got the way to build a netty spdy server. Does someone have a example of a netty spdy client?
0
votes
1answer
21 views

What does it mean channel.id()?

I'm trying to count any "new" client who connect to my HTTP server based on Netty 4 CR1. Before CR1, it seems that channel.id was unique for any requests from a client. Now, I have a different channel ...
0
votes
0answers
19 views

Fixed number of threads on OMATPE

We are using netty 3.6.5 and have been using an ExecutionHandler coupled with OMATPE on our channel pipeline. Our current requirements are to scale to as many threads as possible with events processed ...
0
votes
1answer
34 views

Joining multiple groups does not work with Netty 3.6.5.Final on SuSe Linux and JDK7

I'm implementing a UDP server using Netty 3.6.5.Final and JDK7 (Nio.2) on Suse Linux and I've run up against the wall. The problem specifically deals with the differences in binding to the wildcard ...
0
votes
0answers
24 views

Netty Sample HTTP Server Exception

I am trying to get the example netty HTTP server running, as described here: https://github.com/netty/netty/tree/3/src/main/java/org/jboss/netty/example/http/snoop After copy&paste of the three ...
0
votes
1answer
49 views

When netty channelfuture's status can become uncompleted?

In our production system, I can see the below can happen on a netty ChannelFuture: After channelfuture.awaitUninterruptibly(10 seconds) return, both channelfuture.isDone() and ...
-2
votes
1answer
28 views

Netty IO and IOS ( IPhone ) [closed]

I have a server - client application coded on java . Both server and client was programmed in java. Bu now I want to write IOS client. Is there a library or open source project about this subject ? ( ...
0
votes
1answer
37 views

Netty: How to make sure Channel.close() was fired by the I/O thread

I am using Netty 3.6.2, here is my pipeline factory pseudocode: private final static ThreadPoolExecutor executor = new OrderedMemoryAwareThreadPoolExecutor(8, 4194304, 4194304, 5L, TimeUnit.MINUTES); ...
2
votes
1answer
65 views

Limit number of connections per IP on Netty

I've been searching for a while a way to limit the connections per IP on Netty using its IPFilter class. However, there is no JavaDoc explanation to do that kind of limitations. The only way i've ...
1
vote
1answer
34 views

How to drop congested connections in Netty 4

Using Netty 4, how can I detect that data I write is being clogged up on my side of the connection and close the connection if the remote end can't keep up? I was checking whether ...
0
votes
2answers
73 views

can AsyncHttpClient perform non-blocking, async HTTP calls?

All, I am trying to decide whether to use NodeJS or Java for my application. I will be communicating with CouchDB over HTTP and would like an asynchronous non-blocking design where my application ...
0
votes
1answer
24 views

Using Netty 4, how do I write a handler that can inject messages on a periodic basis and still pass messages through?

I am trying to write a class that injects a message into a channel every minute. I have figured out how to accomplish this using the code below, but I think my flush method is wrong. After flushing ...
0
votes
1answer
45 views

netty socket.io How to get socket.io/socket.io.js

As i can read on the first page of mrniko netty socket.io java server implementation (https://github.com/mrniko/netty-socketio) the client page need to include socket.io.js file. But if i try to ...
0
votes
0answers
44 views

Netty - Continue processing message via ExecutionHandler.handleUpstream

I need to be able to isolate certain processing in a separate thread. Only certain messages require this extra processing. It does involve a native call and remote resources; thus, I really want to ...
0
votes
0answers
20 views

Running netty application in Amazon Elasticbeanstalk

I have a regular netty application server that runs on port 44080 and is built as a .jar file. I would like to use elastic beanstalk to manage the lifecycle of the application. Is there a way I can ...
1
vote
2answers
53 views

Best way to search a netty ChannelBuffer for a string (without making a new string)?

I have proxy server implemented using Netty in which I decode HTTP requests and then write these requests to an outgoing channel based on their path. I need to extract some information from the ...
0
votes
1answer
74 views

ExtJS Web Sockets: Ext.ux.WebSocket eventName error

I'm using the Ext.ux.data.proxy.WebSocket extension, and have the following store definition: Ext.define('ExtMVC.store.StatsWebSocket', { extend: 'Ext.data.Store', alias: ...
-1
votes
0answers
31 views

Handling SocketException, SSLException, etc with Netty

I'm trying to write a client with Netty (4.0-RC1) which handles various network failure modes, such as a peer temporarily not being available. The example below is trying to handle connection ...
0
votes
1answer
42 views

How to stop a thread in a web server

I have a Java socket.io server, based on netty implementation (of com.corundumstudio.socketio). The server handles requests using some closed-source code, and sometimes, a request may get stuck ...
0
votes
2answers
81 views

Netty 4.0 - Sending data to channels on different eventloops

I'm not sure how to do this and I think my approach is wrong - Could someone please give me a hint? I have made a proxy server very similar to the example HexDumpProxy. The purpose is not to dump ...
0
votes
3answers
39 views

Which framework/lib can help me with rapid development Proxy server on java?

I am looking any frameworks or libs which can help me with development easy and small proxy server for internal project needs. I found Jetty and Netty. What other? Also, I see, that Jetty is ...
0
votes
1answer
38 views

TCP Netty Ensure message received

I am creating client-server system, that should be able to work in ustable network. It assumes that connection could be broken at one time, and then system must reconnect and continue it's work. I'am ...
0
votes
2answers
79 views

Failed to create a selector / Unable to establish loopback connection / Connection timed out [closed]

I am running a Java socket.io server (com.corundumstudio.socketio implementation), it used to work OK, but now, just after I start() the server, I get this error message: Exception in thread "main" ...
0
votes
2answers
40 views

Netty Server events

I'm trying to implement a basic MultiClient Chat in Netty, I'm stuck at one point! The code is: public class Server { public static void main(String[] args) throws Exception { ChannelFactory ...
0
votes
0answers
44 views

Sending UDP in Camel/Netty and receiving extra bytes in NIO

I have two applications, one that sends UDP messages using Camel with the Netty component, and one that receives UDP messages in Java NIO with DatagramChannel. When receiving the data, I've noticed ...
0
votes
0answers
87 views

netty4 client OutOfMemoryError :java heap space

My client code: private static Bootstrap bootstrap = new Bootstrap(); private static NioEventLoopGroup ne = new NioEventLoopGroup(); static { bootstrap.group(ne); ...

1 2 3 4 5 23