My need is to communicate between 2 client behind NAT using http tunneling. Is it possible? What all setup is needed to achieve this (like http proxy server etc.)? Is there any library or sample code available for implementing http tunneling over TCP in C#?

link|improve this question

74% accept rate
I think what you're looking for isn't necessarily HTTP tunneling, but rather some form of NAT punch-through. See for example stackoverflow.com/questions/595490/… – bzlm Feb 16 '10 at 13:16
feedback

1 Answer

It might be possible for you to use this library: http://granados.sourceforge.net/

It supports port forwarding (tunneling in this case), but I haven't tried it myself.

It's an SSH library... so if you can set up an SSH server on either end of the connection you'll be able to establish an SSH connection and create a tunnel.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.