4

I'm currently trying to implement a Http Tunnel between a Java Client(That Includes Netty) to a server, so I would like to know if there's any server that is also based on Netty to support this Tunnel or should I build the server side my self?

1
  • 1
    Why not implement the server-side on Netty too? Commented Jul 10, 2011 at 16:13

2 Answers 2

2

I recently came upon this: http://www.jcraft.com/jhttptunnel/. Perhaps helps you...

Sign up to request clarification or add additional context in comments.

1 Comment

This a regular low level IO, built on sockets... and it works only on the client side for now I'm building the client side on netty I need to start thinking about the server side...
1

Now netty includes an example of an HTTP Tunnel. The server must be aware (in some way) of it to work. The documentation of the API for HTTP tunneling (client and server) is available at org.jboss.netty.channel.socket.http

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.