I have WCF service hosted on IIS7.5 running as anonymous – authentication, Please let me know the configuration/steps to run on windows integrated security. Thanks
I have WCF service hosted on IIS7.5 running as anonymous – authentication, Please let
Share
Well the nice thing about NetTcpBinding is that it is secured using Transport security, Windows authentication by default. So all you need to do is use it. Your server binding would look something like this:
Here is an MSDN article that goes more in depth. In IIS, you need to enable net.tcp, and enable Windows authentication.