I am building a distributed system. It will contain one managment console and many remote agents (WCF services). How to provide secure communications between managment console and agents in non domain network?
Asked
Active
Viewed 115 times
1 Answers
0
run the WCF connections over HTTPS

undefined
- 33,537
- 22
- 129
- 198
-
WCF connections over HTTPS make it possible authenticate agent (i.e. host WCF) and secure traffic. How to create authenticate the managment console on agent side (many agents, one console)? – ASergan Dec 26 '11 at 11:45
-
take a look at this, http://msdn.microsoft.com/en-us/library/ms731925.aspx it talks about using certificates to authenticate WCF channels, you can also use username/passwords in a similar way to that which you would with an ASP.Net application – undefined Dec 26 '11 at 11:55