Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients. If you have a question about using Netty in your network application, this is the tag you should use. Useful Links Official documentation ...
46
votes
6answers
24k views
Netty vs Apache MINA
Pros/Cons of using either ? They both provide roughly the same functionality. Which should I choose to develop my high performance TCP server ?
3
votes
1answer
2k views
Using JAVA NIO framework in SPRING server
I'm implementing an hybrid server application that mixes a Web-Servlet and a plain Java application.
The java application manages thousands of sockets for remote devices, while the Web application ...
1
vote
3answers
1k views
Servlet API implementation using Netty
Has anyone made a Servlet API implementation built on top of Netty?
I'm tempted to build my own as I can't google an implementation.
http://www.jboss.org/netty/community#nabble-td4752485
...
7
votes
1answer
1k views
How to write a high performance Netty Client
I want an extremely efficient TCP client to send google protocol buffer messages. I have been using the Netty library to develop a server/client.
In tests the server seems to be able to handle up to ...
5
votes
3answers
2k 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 ...
2
votes
2answers
94 views
Threads not executing concurrently in Netty UDP server
The code I'm analyzing creates UDP server with Netty NioDatagramChannelFactory.
It creates a thread pool with:
ExecutorService threadPool = Executors.newCachedThreadPool();
Then the datagram ...
1
vote
2answers
360 views
Lot of UDP requests lost in UDP server with Netty
I wrote a simple UDP Server with Netty that simply prints out in logs the messages (frames) received. To do that, I created a simple frame decoder decoder and a simple message handler. I also have a ...
0
votes
3answers
98 views
integrating websockets using Netty with Spring web app running in tomcat
I have a web socket server implementation using Netty (say listening on port 8081) and a separate Spring web application running in Tomcat (running in port 80).
I would like to somehow forward all ...
0
votes
1answer
362 views
Netty: ClosedChannelException when closing channel
Why when i'm trying to close channel, I got ChannelClosedException thrown?
Closing with Channel.close(), exception's stacktrace:
java.nio.channels.ClosedChannelException
at ...
2
votes
1answer
490 views
Basic Netty echo server - string encoder error?
This is my first time using Netty and I'm having trouble making a simple echo server! I looked at docs and it says to use the string encoder and decoder, which I am not using properly apparently. For ...
1
vote
1answer
49 views
What's the difference between ChannelBuffer.copy() and ChannelBuffer.duplicate() in netty
What's the difference between ChannelBuffer.copy() and ChannelBuffer.duplicate()?
In Multiple handlers in netty I ended up coming across a problem that was fixed if I passed a copy of a ChannelBuffer ...
1
vote
1answer
104 views
Multiple handlers in netty
I would like to make a kind of logging proxy in netty. The goal is to be able to have a web browser make HTTP requests to a netty server, have them be passed on to a back-end web server, but also be ...
1
vote
1answer
277 views
Set up Netty with 2-way SSL Handsake (client and server certificate)
I am now trying to set up Netty with a 2 way SSL handshake, where both the client and server present and verify certificates.
This does not appear to be implemented in SslHandler. Has anyone does ...
1
vote
3answers
119 views
Is one port for read, one port for write a good idea for socket applications?
I am wondering if it is a good idea to have 2 separate ports one for read, one for write ? Can I expect better performance ?
NOTE: Server is Centos, Client is flash, message format in communication ...
1
vote
2answers
397 views
interesting latency in TCP socket application
I am working on a java game server. Using TCP protocol with NETTY. Clients are flash. Some clients are having very high latency issue. For this reason I started the following test to see the actual ...
0
votes
2answers
291 views
The netty server seems to be blocked when I add a ExecutionHandler?
THE SCENE:
I am writing a echo client and server. The data being transfered is a string:
Client encode a string,and send it to server.
Server recv data, decode string, then encode the received ...
0
votes
2answers
460 views
Netty: Closing WebSockets correctly
How can I close a WebSocket channel/connection from server side correctly? If I use a ctx.getChannel().close(), the onerror in the Brwoser (Firefox 9) is thrown:
The connection to ...
0
votes
1answer
2k views
How to use Netty from inside a web app - steps to proper configuration
I'm trying to setup Netty to run embedded in my web application.
I have found the following document: ...
6
votes
2answers
2k views
long polling netty nio framework java
How can I do long-polling using netty framework? Say for example I fetch http://localhost/waitforx
but waitforx is asynchronous because it has to wait for an event? Say for example it fetches ...
1
vote
1answer
353 views
send message netty with javascript
is there any way for send messages to a netty http server from javascript like WebSocket object but for Netty long polling ?
4
votes
2answers
2k views
Web Services client using Java NIO (Netty?)
I have written a simple client to test my Web Service, but I am investigating the possibility of using the JBoss Netty framework, rather than blocking sockets, in order to increase the number of ...
3
votes
1answer
270 views
How to reduce netty garbage production?
I have network application that handles about 40k msg/sec written using netty framework and I want to reduce the number of garbage collector calls. While profiling I found that there is significant ...
3
votes
3answers
355 views
Netty - How to pass information between handlers in the same pipeline
I would like to create a pipeline of handlers such as:
public ChannelPipeline getPipeline() throws Exception
{
return Channels.pipeline(
new ObjectEncoder(),
new ...
1
vote
1answer
371 views
Implementing keep-alive messages in Netty using WriteTimeoutHandler
I am using Netty 3.2.7. I am trying to write functionality in my client such that if no messages are written after a certain amount of time (say, 30 seconds), a "keep-alive" message is sent to the ...
1
vote
1answer
494 views
Netty Comet Async request time out
I'm trying to create long polling Comet using Jboss Netty.
How can I configure time out of 30 sec? Following the documentaton:
@Override
public ChannelPipeline getPipeline() throws Exception {
...
1
vote
1answer
330 views
Netty based server in servlet container
I have a network server that was implemented using Jboss Netty.
It servers the application over both raw TCP and HTTP and running as a stand alone process.
Clients connected with TCP can transfer data ...
0
votes
1answer
27 views
Adding arbitrary connections to my current channel in netty
I have the following scenario for my project running on Netty:
I have a server channel bound to 'w'
I make a connection to a host using a local address 'x' to the remote address 'y'.
I now need to ...
0
votes
1answer
246 views
Trouble with Netty IdleStateHandler - am I testing it the wrong way?
I have a toy Netty server and am trying to send heartbeat messages to clients when nothing has happened on their channels. I am testing this by telnetting to the server, writing a message and then not ...
0
votes
2answers
198 views
How to use ChunkedStream properly
Here's my use case... I have an upstream service that sends my Netty app data over the network, and that data needs to be published to multiple clients connected to Netty. The data pushed to the ...
3
votes
2answers
336 views
Configureing Netty with Spring IoC
Has anyone used Spring to configure Netty?
I'm looking for an example or description on how I can configure Netty with Spring.
3
votes
3answers
262 views
Permission denied to bind to port when running Scala application via SBT
I'm trying to run my Scala code with SBT, but get the error below. This happens both with SBT using the command line and with IntelliJ Idea.
[error] (run-main) ...
2
votes
1answer
106 views
How to avoid Diffie-Hellman for SSL connections with Java/Netty?
I am using Netty as backend in a Java-based Usenet client. The library is working fine, however, in some circumstances I can't connect to a remote server via SSL, because of exactly this error:
Java: ...
2
votes
1answer
687 views
Java Netty load testing issues
I wrote the server that accepts connection and bombards messages ( ~100 bytes ) using text protocol and my implementation is able to send about loopback 400K/sec messages with the 3rt party client. I ...
2
votes
1answer
399 views
JBoss Netty with JSON
I would like my Ajax code to connect a server through Netty. For that purpose I need a JSON decoder and encoder in the server side Netty handler.
Is there any out of the box implementation for this, ...
2
votes
3answers
594 views
latency in netty due to passing requests from boss thread to worker thread?
I have some questions about Netty (Server Side), TCP/IP applications;
I am wondering if there can be latency because of netty (due to missing configuration etc.) while passing the request from boss ...
2
votes
1answer
657 views
How does downstream events work in jboss's netty?
Just started playing around with netty in implementing my own server. Took me a while to get the hang of it but now I was able to accept clients by writing my own MessageHandler and inside ...
1
vote
0answers
39 views
netty + tomcat integration
I am new to websockets and was exploring which 1 would be better and how :
1) using netty (with websocket) in tomcat
2) using tomcat in netty(with websocket)
I found a post about the 1st way : ...
1
vote
0answers
70 views
Netty ObjectDecoder throws java.io.StreamCorruptedException: unexpected end of block data - Revisited
I raised this issue in January (thread Netty ObjectDecoder throws java.io.StreamCorruptedException: unexpected end of block data) but got side-tracked and have recently come back to the problem.
...
1
vote
1answer
174 views
Jersey application fails to return JSON representation for a simple POJO
I'm trying to use Jersey RS to return JSON for a POJO. This is not a servlet and there is no servlet container. The Jersey is being setup from within Netty (not Jetty). I can get Jersey to return ...
1
vote
2answers
139 views
Java SSL connection and UNKNOWN SERVER CERTIFICATE warning
I'm using Netty for asynchronous http(s) requests. When the url for the request is https I'm adding this to the pipeline:
SSLEngine engine = ...
1
vote
1answer
83 views
Sharing one instance of HashedWheelTimer
In this question
Netty Comet Async request time out
It was suggested to me, to share one instance of HashedWheelTimer between pipelines.
My current code looks like this
@Override
public ...
1
vote
1answer
154 views
How to send a request with POST parameters in Netty?
I'm trying to send a request with POST parameters in Netty.
I searched Netty API, Google, and here (Stack Overflow)
but didn't find any good way to do it.
(It could be my fault of terrible searching ...
1
vote
0answers
276 views
SSL/TLS error (“no cipher suites in common”) with Netty when trying to establish a secure connection between a frontend and a backend
I want to secure a TCP connection between a backend and a frontend. We use Netty to establish a TCP connection which works pretty well. Now, we want to secure this connection by using SSL/TLS. For ...
1
vote
1answer
214 views
Netty Adaptive UDP Multicast Support
Newbies having trouble processing a UDP video stream using Netty 3.2.4. On different machines we see dropped bytes etc using Netty. We have a little counter after Netty gets the bytes in, to see how ...
1
vote
1answer
253 views
How to implement ObjectDecoder(ClassResolver) in Netty 3.2.7
In netty version 3.2.5 in method "public ChannelPipeline getPipeline() throws Exception" I
have a decoder defined as follows:
pipeline.addLast("decoder", new ObjectDecoder());
I have upgraded to ...
1
vote
1answer
340 views
Usage of Netty's ChannelLocal
The JavaDocs for Netty explain ChannelLocal to be similar to ThreadLocal, however I've got some questions about it's usage. ThreadLocal is a static class with static methods that access ...
1
vote
3answers
189 views
JXTA JXSE 2.7 with broken JBoss Netty library dependency
Recently I was investigating p2p framework to use and I came across JXTA. Too bad, Oracle decided to dropped JXTA. Real shame for a nice software. Anyway the problem that I have is trying to start a ...
1
vote
1answer
279 views
Sending POST params with Netty and why isn't DefaultHttpDataFactory not in the releases?
HttpRequest httpReq=new DefaultHttpRequest(HttpVersion.HTTP_1_1,HttpMethod.POST,uri);
httpReq.setHeader(HttpHeaders.Names.HOST,host);
...
1
vote
1answer
795 views
Is it worthy to migrate quickfixj from Mina to Netty?
I am writing a FIX buyside GUI based on quickfixj. Although the performance is not an issue to a GUI, I am thinking of migrating the quickfixj from Mina to Netty as I would like to develop it to a ...
0
votes
2answers
81 views
Netty - How worker threads work
I want to understand how netty worker threads work . as per the code , for each new request we get nextwoker() any one of the worker thread and allocate it for processing of events of client . SO a ...