REA_ANDREW
REA_ANDREW

Reputation: 10764

WCF Service webHttpBinding Anonymous Authentication

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

Answers (1)

Ray Lu
Ray Lu

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

Related Questions