views:

30

answers:

1

I will soon start work on software which runs on different machines and communicates over the network. I'd like the communication to happen using HTTP tunneling, so no firewall ports need to be opened by the user.

This software will be written in C++. My problem is I don't really know where to start looking for resources regarding implementing HTTP tunneling.

I believe I could use WCF for this - does that sound like a good idea? Any pros/cons of going that route?

A: 

The advantage of using something like WCF is that anomolies of "passing through" some routers are all handled for you. I'm talking about deep-packet inspection that some routers have, that will identify material you send as "not acceptable" if it doesn't look like clean HTML.

On the other hand, working with WCF in C++ might be interesting. Presumably this means you are willing to write code as C++/CLI.

Still, I think you will find that your choice of a networking framework is the lesser issue. Moreso you network control logic will consume your time. If you are doing any amount of asynchronous network communications, be sure you are well-educated with a good state-machine tool. Notice also the C# port.

p.s. If you are not using managed clients with WCF, just remember that your messages must be serialized with XML properties/attributes in alphabetical order. You'll get inexplicable errors otherwise. Nulls must be sent explicitly too, if I recall.

Brent Arias