We have a .net monitoring service that runs on several PCs installed across the UK at client locations. We need to be able to communicate with these pc's from a central web application in order to send them individual commands and request data from them.

These PCs all have internet connectivity but may be behind firewalls. Because these PCs may not be contactable directly from a URL, we need some way for these "workers" to connect to the centralised sever, identify themselves, and then respond to commands from the server.

We are looking at WCF P2P as a solution, but have a few concerns about this (can you target an individual worker with this, and will we suffer problems with NATs and firewalls). We also considered using XMPP as a protocol to communicate.

Is P2P the way forwards, or is there a better solution (either WCF or otherwise).

Thanks

link|improve this question

74% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I suggest using netPeerTcpBinding.

There is a good article here.

link|improve this answer
Thanks, we're checking that out now. We have the sample "trader" app working on 2 pc's in our network but not when we run it on a remote PC... I guess we need to read more about how this thing works – Matt Roberts Apr 6 '11 at 10:06
@Matt, never used it but loved to use it. We had a similar situation where we had to install software on remote machines. I used netTcp but had I known what I know now, would have used this. – Aliostad Apr 6 '11 at 10:14
feedback

Your Answer

 
or
required, but never shown

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