vote up 0 vote down star

hi, i am trying to access a https wcf service from silverlight. the clientaccesspolicy is placed on service root and i have validated through silverlightspy its showing it as valid and calls allowed. i am able to call that webservice successfully from desktop client but when tries to call from silverlight it throws an error that call to .... service failed may be cross domain poliecy etc is not valid.... any ideas???? here is the service cross domain policy too:

    <?xml version="1.0" encoding="utf-8"?>
<access-policy>  <cross-domain-access>    
<policy>
      <allow-from http-request-headers="SOAPAction">    
    <domain uri="*" />
      </allow-from> 
     <grant-to>   
     <resource include-subpaths="true" path="/" />
      </grant-to>  
  </policy>
  </cross-domain-access>
</access-policy>
flag

Not seeing that cross domain policy... – Nate Bross May 12 at 18:24
sorry! its added now. – Usman Masood May 14 at 5:47

3 Answers

vote up 1 vote down check

You need a separate domain node for https:

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

From this post:

http://timheuer.com/blog/archive/2008/10/14/calling-secure-services-with-silverlight-2-ssl-https.aspx

link|flag
vote up 0 vote down

Have you looked here?

http://stackoverflow.com/questions/122144/calling-wcf-service-from-silverlight/123432

link|flag
is there any restriction if the service is on https and caller is on http? – Usman Masood May 13 at 10:56
vote up 1 vote down

This is a great source of silverlight + wcf info:

http://www.netfxharmonics.com/2008/11/Understanding-WCF-Services-in-Silverlight-2

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.