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
2 views

How to read from CompositeChannelBuffer? UnsupportedOperationException Exception

During my testing, I am loading an JPG image from browser with netty based littleproxy sitting between server and client. While loading this particular image, I am getting following exception. The ...
0
votes
1answer
10 views

Netty: Number of outstanding requests

In apache, there is server-status page which tells me the current status of the server. In particular, it tells me the number of requests currently ('currently' as in, at the time when the ...
0
votes
0answers
15 views

netty HttpSnoopClientHandler.messageRecieved is not getting invoked

I am getting started with netty. I was trying to play with the HttpSnoop example included in the source code. Although, I am able to get the HttpSnoopServer working i.e. I see responses in the browser ...
0
votes
1answer
25 views

StackOverFlow exception when using Netty's SnappyFrameDecoder

I'm trying to create a simple program that uses Netty's SnappyFrameEncoder/Decoder. I created a small java application that uses LocalChannels for the server/client. The client encodes a string using ...
0
votes
1answer
22 views

Netty dynamic pipeline configuration

This may be a "newb" question but here it goes anyway. We have a netty server up and running and we want it to support multiple different protocols like straight tcp, http, udp etc.. I am trying to ...
0
votes
1answer
25 views

Reading and Writing to ChannelBuffer is not working properly

I want to read the binary data stored in the ChannelBuffer object contained in an HttpResponse. I have tried with the below code to read and save from the ChannelBuffer, but it is not working. What is ...
-1
votes
1answer
20 views

What is the best approach to bind to different port / each port has different handler in Netty?,

I want to build an application based on Netty, but need to bind to different ports at the same time, and each port needs to have a different handler logic. How to do this in Netty? I searched online, ...
0
votes
0answers
12 views

How can I send and receive something on multicast group with netty4?

I would be very grateful for an example using netty4 and joinGroup of a multicast receiver and sender. I have looked for days for an answer and tried so many combinations. I found some snippets, but ...
0
votes
0answers
16 views

Determining pending buffered write size with netty?

I have a daemon I'm writing and I want it to fill up the TCP send buffer but once it is filled I want it to suspend writing to the connection. I'm using Netty 3.2.5 ... The idea is that all writes ...
-2
votes
0answers
35 views

Reading and saving data from Channel Buffer [closed]

LittleProxy java proxy uses Netty framework. When I receive HTTP response, I want to read the binary data stored in the ChannelBuffer object contained in HTTPResponse. What is the correct way of ...
0
votes
0answers
27 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
1answer
19 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
50 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
17 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
39 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
18 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
26 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
42 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
10 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
26 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
22 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
14 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
28 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
30 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
54 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
29 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
33 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
56 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
57 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
53 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
45 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
19 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
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 ...
0
votes
1answer
14 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
22 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
36 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
31 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
51 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
29 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
39 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
70 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
36 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
80 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
27 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
47 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
45 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
24 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
56 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 ...

1 2 3 4 5 23