Reputation: 10764
I have a situation where by I have un ticked the anonymous authentication in IIS, so the designers and clients are able to see the work but no one else. I need to get the WCF Service to work under these conditions but I am not sure how.
Does anyone have any idea what I would need to do?
Upvotes: 0
Views: 1459
Reputation: 26648
You can attach the credential to the URL as querystring. your WCF services( in message inspector ) can check it for authentication purposes. You might also want to enable https.
Upvotes: 1