Swine1973
Swine1973

Reputation: 192

Java Http Tunneling

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?

Upvotes: 4

Views: 5230

Answers (2)

sw.
sw.

Reputation: 3231

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

Upvotes: 1

mtraut
mtraut

Reputation: 4740

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

Upvotes: 2

Related Questions