Click here to Skip to main content
15,897,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to secure the WCF layer. basically only user ids authenticated by the web server should get access to the wcf services.

I tried by creating Certificate at IIS but not able to get proper output as i want (to secure the WCF layer.basically only user ids authenticated by the web server should get access to the wcf services) like any client want to access services by passing Service URL .svc first ask Userid and Password to see services . please help me.


Windows server 2008 R2
IIS 7.5
Silverlight 4.0
C sharp.

Thanks.
Posted

1 solution

You can either Windows or Basic Authentication to secure the service using IIS in the case that all your users are members of the relevant Active Directory. If this isn't the case, you need to implement a UserNamePassword validator so you can authenticate against your own credential store:

http://msdn.microsoft.com/en-us/library/ms733131.aspx[^]

http://msdn.microsoft.com/en-us/library/aa702565.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900