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?

Swine1973
  • 192
  • 1
  • 3
  • 13

2 Answers2

2

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

mtraut
  • 4,720
  • 3
  • 24
  • 33
  • 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... – Swine1973 Jan 04 '11 at 11:59
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

sw.
  • 3,240
  • 2
  • 33
  • 43