Reputation: 9171
I have a silverlight application and a wcf that the silverlight application gets access to. Can someone point me to an article or explain the best way to secure this wcf service and prevent other users from directly accessing the wcf (or evil silverlight programs)?
Upvotes: 2
Views: 561
Reputation: 5259
Here's a good article about the web services security.
In my applications, I decided to use the session approach because it's flexible and easy to implement.
Upvotes: 1