Reputation: 11
I am having a WCF Service which is hosted with IIS with nettcpbinding and Windows authentication, I am trying to do authorization with user name/roles. But service is allowing any user to access it.
Is this possible in first place?
Upvotes: 1
Views: 648
Reputation: 32390
It sounds like you have some soft of configuration error. IIS does not allow for hosting of WCF with the nettcp binding. You'll need to host your WCF in a Windows Service or WAS (only in Windows Server 2008). See Learning WCF, by Michele Leroux Bustamante for an excellent reference on how to do this.
Upvotes: 1