views:

43

answers:

0

I have recently modified my web service in IIS7 to use SSL. To do this, I have created a self signed certificate and applied that to my web service. I then added https bindings to my site in IIS. I have changed my clientaccesspolicy.xml file to allow https ->

 <domain uri="https://*" />

Whenever I try to call my service from my SL site I get the following error:

{System.Security.SecurityException: Security error. at System.Net.Browser.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult) at System.Net.Browser.BrowserHttpWebRequest.<>c_DisplayClass5.b_4(Object sendState) at System.Net.Browser.AsyncHelper.<>c_DisplayClass2.b_0(Object sendState)}

Does anyone know what else I have to do to get this to work?