Xander
Xander

Reputation: 9171

silverlight and wcf security without iis

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

Answers (1)

RQDQ
RQDQ

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

Related Questions