Hi, I use silverlight to consume a report hosted in a IIS web server. I use ASP.NET form authentication to authenticate users. Everything is normal for WCF service, but I don't know hot to implement authentication for report service. Can anybody help me?
2 Answers, 1 is accepted
0
Steve
Telerik team
answered on 13 Apr 2011, 08:12 AM
Hi Manh,
You can find more information about ASP.NET Authentication in the respective MSDN article.
You should also review the security model of your application and made it consistent with WCF Security. In short, the security can be configured independently from the WCF service implementation.
Kind regards,
Steve
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
Thanks for your reply. There's no problem for me to use ASP.NET authentication with normal WCF Service. What I want is that When user is not logged in, I don't want them to see the report. I want to check the user authentication from server side, not from client side because of security risk.