Xander
Xander

Reputation: 9171

silverlight 4 and wcf security

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

Answers (1)

The_Black_Smurf
The_Black_Smurf

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

Related Questions