Accessing ASP.NET 2.0 web services from Silverlight 2.0 - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T01:16:33Zhttp://stackoverflow.com/feeds/question/467493http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/467493/accessing-asp-net-2-0-web-services-from-silverlight-2-00Accessing ASP.NET 2.0 web services from Silverlight 2.0Jeff Yates2009-01-21T23:28:17Z2009-01-21T23:49:09Z
<p>I have some ASP.NET 2.0 web services and I have a Silverlight control that accesses these services. When I run these under the localhost, everything works fine. However, if I deploy the web services to an ASP.NET server and run my simple Silverlight html host locally, Silverlight no longer gets a response from the asynchronous web services - the event just doesn't get raised. I have configured the Silverlight control to have the correct binding to access the services from their hosted location but it just doesn't work.</p>
<p>I have a clientaccesspolicy.xml at the root of the server location as follows:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="*"/>
</allow-from>
<grant-to>
<resource path="/" include-subpaths="true" />
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
</code></pre>
<p>Also, I have tried disabling authentication in the web.config just to see if WIndows authentication was causing a problem but this didn't work.</p>
<p>Does anyone know what could be the problem? Is there possibly a configuration setting on the IIS server to be changed? Do I need to do something special in my Silverlight control to specify credentials?</p>
<p>Any assistance would be great. Thank you!</p>
<h3>Update</h3>
<p>Okay, I have just solved my issue but I don't really understand the problem. My guess is that the clientaccesspolicy.xml is either malformed or only works for WCF services, whereas my services are ASP.NET 2.0.</p>
<p>I used Web Developer Helper to confirm that the clientaccesspolicy.xml was being retrieved and it was, but it didn't work. So, armed with <a href="http://msdn.microsoft.com/en-us/library/cc197955(VS.95).aspx" rel="nofollow">this MSDN article on cross-domain Silverlight</a>, I tried using a crossdomain.xml instead. This worked (after removing the clientaccesspolicy.xml, of course).</p>
<p>Can anyone explain why the second option worked?</p>