views:

196

answers:

1

I have a Web Service, Now I want to implement security model for that, Can you suggest me some tutorials which talks about implementing security on service and also on client. i tried OAUTH but there is not much implementation details about Service, tough Client implementation details are present in few blogs. Please Point me to some relative stuff where i can learn about security implementation. I am using WebHttpBinding in my WCF Service and its written in C#.

+1  A: 

MSDN has an entire section devoted to Security for WCF.

Most of the details are in their Securing Services and Clients section of documentation. This discusses the details of the entire security model when using WCF, both on the server and the client.

Reed Copsey