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

HTTP response attachment download complete notification

In LittleProxy implementation, is there a feature where we can get a notification of the completion of the file download? Currently I am using below code to save the attachment to the HTTP response ...
0
votes
1answer
11 views

How to use Netty ChannelHandler with gzip?

I want to compress and uncompress with Gzip using Netty ChannelHandler, I was trying for a while, but always got a bit difficulty. My code is below: pipeline.addLast("decoder", new ...
0
votes
0answers
22 views

HTTP Client benchmark

Hi I am new to server related programming.so i want to create client-server application.but the problem is there are many client server models.such as Apache client,netty client,spray HTTP client and ...
-2
votes
2answers
46 views

Netty or java.net.Socket for green field project?

When starting a green field project, is it recommended now to use Netty project instead of java.net.Socket? When to use Netty and when to use java.net.Socket? The project is to connect to Redis. ...
0
votes
0answers
35 views

Netty Websocket SSL client not working after a successful handshake

I want to create a secure websocket client-server communication using Netty framework. I looked at the netty examples and there is an example with websocket ssl server: ...
-2
votes
0answers
31 views

Does netty support TLS_PSK_WITH_AES_128_CBC_SHA? [closed]

Does netty support TLS with private shared key (PSK)? If so, is there an example for it? I looked at the secure chat example, but couldn't figure out where can I put the PSK handling logic, etc. ...
1
vote
0answers
22 views

Netty server down (Server is running in eclipse debug mode )

My netty server suddently stop accepting TCP connection. It works fine til last night.The server is hosted in remote, it is running in eclipse Version: "Juno Service Release 1" in debug mode.I didn't ...
0
votes
0answers
17 views

java.io.IOException: Channel not open for writing

I am saving a data read from the HTTP response onto a file on disk. This is successful. outputFileName = "E:/output/file.mp4"; ChannelBuffer chanBuff = response.getContent(); FileOutputStream ...
0
votes
1answer
16 views

Netty messageReceived, writing object not working

Server code: public static void main(String[] args) { try { ServerBootstrap bootstrap = new ServerBootstrap(new NioServerSocketChannelFactory(Executors.newCachedThreadPool(), ...
0
votes
0answers
24 views

Implementing a feed-system over a client-server architecture

I am a bit new to Java. I am looking to implement a feed-system over a client-server architecture as follows: The server will store the data in files, and as soon as a client connects to it, the ...
-1
votes
1answer
25 views

How can use netty websocket client with wss?

How can use netty websocket client with wss? Now I need one websocket client, I find one websocket example ...
0
votes
0answers
34 views

How to send text and binary data from a custom netty HTTP server in Java?

Based on netty 3.6 I am implementing a small HTTP server into my Java desktop application. By now I have successfully created the basic HTTP server layout, I can send various text-based files to my ...
1
vote
1answer
28 views

ChannelBuffer readInt()/writeInt() results in wrong value

I have server implementation in Java using Netty and client is in Adobe Flash. When I am sending the request or response in the buffer, I am first writing the length of the buffer and then the data. ...
0
votes
0answers
21 views

Download rstp stream in android

I am developing a application in android to stream and download video from IP camera over rtsp link. I am able to show the rtsp video via the VideoView in android. But i also want to download this ...
1
vote
1answer
18 views

camel-netty causing deadlock when multiple tcp stations are configured in route

I m getting the following exception when trying to use more than two netty endpoints in a single route. java.lang.IllegalStateException: await*() in I/O thread causes a dead lock or sudden ...
2
votes
2answers
75 views

Convert from JSon to multiple unknown java object types using GSon

I have a netty decoder which uses GSon to convert JSon coming from web client to appropriate java objects. The requirement is: Client could be sending unrelated classes, Class A, Class B, Class C etc ...
0
votes
1answer
39 views

Netty 4.0 channel.id() returns negative integer?

When trying to log the channel ID for debugging purposes: @Override public void channelActive(ChannelHandlerContext ctx) throws Exception { // TODO: Investigate negative id ...
1
vote
1answer
39 views

Why dont netty logs show proper class and package information

I use SLF4J in my game server project which uses Slf4j and Log4j. However netty specific logs come out like below. 2013-06-08 13:37:30,254 [Slf4JLogger.java:71][DEBUG]:Using SLF4J as the default ...
0
votes
0answers
31 views

Netty 4 adding Json encoder

I'm trying to return response as Json. For this purpose I wrote JsonEncoder and added it to pipeline, but my server stops responding and I see this message in console. Jun 8, 2013 1:54:09 AM ...
2
votes
0answers
85 views

Writing netty performance tests

So I have a netty-based websockets client that I am using for performance tests. My idea is that I can use it to simulate 100, 1000, etc simultaneous connections. I've determined that my current ...
0
votes
1answer
52 views

Netty HTTP + MongoDB: Unlimited Increment in connections

I'm now using Netty as my backend webservice and MongoDB as my database. At first, I'm very glad with the high performance of the combination of MongoDB and Netty. But recently I checked the MongoDB ...
1
vote
1answer
36 views

Unable to receive response in client from netty server

I am new to Netty and trying to writing a server client project using it. I am able to send the request from client to the server successfully and am able to process it too using my listeners. But the ...
0
votes
1answer
23 views

netty open 2 port server & 1 port client

I want open 2 port on server, 1 for production, 2 for monitoring and 1 client for telnet to another server. but my server always got notifcation "to many open files" when run up to 1 day, my code like ...
0
votes
1answer
27 views

How to properly implement GUI in netty chat server side

i currently trying to create a chat service using netty.I took my references from some source code and i would like to implement a simple GUI where at the server side, a button "send" has to be ...
0
votes
1answer
20 views

EventLoopGroup and BIO operation.

I'm having Netty Web server which should retrieve data using Hibernate and return response to the client. So I just wonder if my implementation is correct ChannelPipeline pipeline = ...
0
votes
1answer
27 views

ChannelInboundMessageHandlerAdapter vs. ChannelOutboundMessageHandlerAdapter

According to Documentation ChannelInboundMessageHandlerAdapter should be used for inbound messages and ChannelOutboundMessageHandlerAdapter should be used for outbound messages. If I look at netty ...
0
votes
1answer
31 views

Netty and Channels and Websockets

So, I have built a Netty 3.6.2 based Websockets server application. This application will have many, many users. The idea is that clients register to listen for information on a topic, and when ...
0
votes
1answer
41 views

netty 4: add handler after packet is written

I need to add an outbound handler once a packet has been sent (netty 4.0.0.CR2). I tried doing it this way: RC4Decoder rc4Decoder = new RC4Decoder(rc4Key); ctx.pipeline().addFirst("rc4Decoder", ...
0
votes
1answer
23 views

Does a single Netty worker thread manage all the handlers in a pipeline?

I am new to Netty. I am trying to find out if all the handlers in a Channels's pipeline are managed by a single worker thread. In that case won't the worker thread be locked by the handlers to finish. ...
0
votes
1answer
38 views

Multiple clients using Netty

Iam starting with Netty and I've tried the echo example I would like to simulate lots of clients connected to a server instead of just one like on the example. I can see on the EchoClient code that ...
0
votes
0answers
45 views

Netty Server/Client Connection established but client closes unexpected with no error

First of all thank you for spending your time reading this. I am currently stuck with a quite weird bug. I am a bit familiar with java but new to Netty. I am writing a Chat Program similar to the ...
2
votes
1answer
44 views

Netty Client Won't send more data after a while

I'm writing an application that consists of a Server and a Client written with Java using Netty. I've not found a real answer to this question, but I wonder why my Server-Client connection stops ...
0
votes
1answer
69 views

Netty 4.0.0.CR3 - LengthFieldBasedFrameDecoder maxFrameLength Exceeds Integer.MAX_VALUE

So far I have been amp'd about upgrading from Netty version 3.5.7.Final to 4.0.0CR3 until I ran into my final problem during the upgrade.... the LengthFieldBasedFrameDecoder. Each available ...
-2
votes
0answers
31 views

How to implement TrafficCounter in HttpServer? [closed]

I'm working with Netty 4.0 and I'd like to implement TrafficCounter which exists in Netty's API. But there is a poor explanation about how to do this, and also i couldn't find any samples. I need to ...
-2
votes
0answers
28 views

Traffic Counter [closed]

In my project I want to implement a traffic counter for all connections, and also for each connection. I tried to use io.netty.handler.traffic.* but there is a poor exlanation in API and I really ...
1
vote
1answer
42 views

Can I call `Channel.write()` in non-Netty thread?

For some reason, I need write messages to channel(the operation is at server side, and the channel is already connected.) in non-netty thread. But I found that my client can't get the message though I ...
0
votes
1answer
36 views

[Netty 4 CR2]Got exception when closing channel by using user-defined encoder and decoder

I am replacing Netty3 with Netty4 in my project. I am using Google-protocol-buffer as data transfer. I got an exception when closing channel which works fine in Netty3. Bellowed is the exception ...
0
votes
0answers
39 views

Is there any example show how to monitor tcp connection by heartbeat between android client and remote server?

I am looking for a example to show how to implement a reliable way to keep monitor the tcp connection between the android app and remote server by exchange heartbeat package. Anyone know is there any ...
0
votes
1answer
43 views

NioEventLoopGroup vs AioEventLoopGroup

I am a new comer to Netty and Java NIO. I am using Netty 4.0 RC3. I am confused by the difference between NioEventLoopGroup and AioEventLoopGroup. I see that NioEventLoopGroup is using Java NIO.1 ...
0
votes
1answer
30 views

Is there an access log library for netty?

Is there a library that create access log for Netty? It would be nice if it is compatible with apache access log and configurable like apache. For example an access log configuration in apache: "%h ...
5
votes
1answer
128 views

JUnit and Netty cause application to end prematurely

Note: I am using JUnit 4.11 and Netty 3.6.5. I am trying to test some basic functionality in my complicated server app. I want to extract simply the networking functionality and do some unit tests. ...
1
vote
1answer
88 views

how to implement connection timeout in vert.x socket server?

I am working on a project using vert.x. In this project, I want to implement a function: when a client sends nothing in 15 seconds, server will mark that connection as unused and release it. I found ...
1
vote
1answer
72 views

Using Netty with Scala

I use Netty 4.0.0.CR3 in my Scala 2.10.1 application. This client side code ... val b: Bootstrap = new Bootstrap b.group(group).channel(classOf[NioSocketChannel]).handler(new ...
0
votes
1answer
37 views

Netty server remote connection

Netty server, Fedora. I just can't connect to the server from remote host and no listening socket is displayed via netstat util. However I can establish the connection running client and server on the ...
0
votes
0answers
34 views

Netty 4.0 Flow Control

Netty 3.x offered MemoryAwareThreadPoolExecutor which allowed flow control between the I/O thread model and the thread model that would execute the business logic. Things changed quite a bit in 4.0 ...
1
vote
1answer
54 views

Netty Server Push Usage and Memory Leak

I'm now using Android as my Netty client. And Windows as my Netty Server. Recently, I find a strange behavior on Netty. When I open the server-side app, the memory is only 30MB. But after several ...
1
vote
0answers
57 views

c# client and netty server

I have met a question, Our client project is in c#, and want to communicate with netty based server, I have to do packet encapsulation manually as I have not found netty library written in c#. If ...
0
votes
1answer
50 views

Best approach in Netty for server-side scheduled tasks/events

I'm trying to implement a server-application in Netty 4.0 that communicates to the clients via TCP/IP Socket. The client will make an initial connection, once connection is established. The server ...
0
votes
1answer
53 views

Closing the channel right after writing the response

What happens if I close the channel right after writing the response? Is the response still delivered? This http upload example seems to say that but I'm not sure if it's just a bug. ...
0
votes
0answers
25 views

Using NettyIO in a JCA adapter

I have an incoming information processing solution which receives data through a special UDP protocol from several data acquisition devices. We recently decided to port the whole thing to run inside a ...

1 2 3 4 5 24