Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I secure a WCF communication with net.tcp binding

How can I secure a WCF communication with net.tcp binding between two C# applications ? I've run into transport and message security, but is there a solution which I could implement which uses one of those ?

like image 727
Rayjax Avatar asked Oct 06 '22 18:10

Rayjax


1 Answers

Take a look at this MSDN article.

The client is authenticated and messages are secured using Windows authentication.

like image 154
Joe Avatar answered Oct 10 '22 03:10

Joe