Silverlight WCF Authentication (Help going from WPF to Silverlight) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:30:25Z http://stackoverflow.com/feeds/question/885326 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/885326/silverlight-wcf-authentication-help-going-from-wpf-to-silverlight 1 Silverlight WCF Authentication (Help going from WPF to Silverlight) Nate Bross 2009-05-19T22:23:17Z 2009-09-04T09:01:13Z <p>I have an existing working WPF Application in which I have implemented my own custom authentication to a backend WCF service. When I access this service from WPF, setup the ServiceProxy as follows:</p> <pre><code>proxy.ClientCredentials.UserName.UserName = "test"; proxy.ClientCredentials.UserName.Password = "pass"; </code></pre> <p>and because I'm using HTTPS the uid/pwd is secure.</p> <p>In Silverlight 2 there is no .ClientCredentials object on the proxy. The only option I've found is to add two string parameters to EVERY WCF Exposed method for Uid/Pwd. That sounds like insanity to me, there MUST be a better way, no?</p> http://stackoverflow.com/questions/885326/silverlight-wcf-authentication-help-going-from-wpf-to-silverlight/886874#886874 4 Answer by Andy Britcliffe for Silverlight WCF Authentication (Help going from WPF to Silverlight) Andy Britcliffe 2009-05-20T08:43:05Z 2009-09-04T09:01:13Z <p>Unfortunately Silverlight 2 only supports basicHttpBinding which means it doesn't support ClientCredentials.</p> <p>The 2 options you have are: 1. As you mentioned passing the username and pass with each request. 2. using asp.net authentication and enable asp.net compatability mode in your services.</p> <p><strong><em>-- N.B TransportSecurityWithMessageCredentials I mention below didn't seem to make the cut for SL3 so only options are the 2 above for both SL2 and SL3</em></strong> </p> <p>Silverlight 3 improves on this story with TransportSecurityWithMessageCredentials and you can find out more about this on the Silverlight Web Services Team blog (Would link to it but apparently as I'm a new user I'm not allowed0</p> <p>HTH</p>