Reputation: 9171
If I wanted to call wcf services that were not hosted in iis from a silverlight application. What would be the best way to secure them?
Upvotes: 2
Views: 273
Reputation: 15579
Encryption
This question talks about encryption:
Other ways to encrypt WCF Connections
Authentication
This MSDN page describes how to set up Username / password authentication:
http://msdn.microsoft.com/en-us/library/aa702565.aspx
This basically revolves around providing your own implementation of the UserNamePasswordValidator class and hooking that up in configuration.
Upvotes: 2