Accessing ASP.NET 2.0 web services from Silverlight 2.0 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:16:33Z http://stackoverflow.com/feeds/question/467493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/467493/accessing-asp-net-2-0-web-services-from-silverlight-2-0 0 Accessing ASP.NET 2.0 web services from Silverlight 2.0 Jeff Yates 2009-01-21T23:28:17Z 2009-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>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;access-policy&gt; &lt;cross-domain-access&gt; &lt;policy&gt; &lt;allow-from http-request-headers="*"&gt; &lt;domain uri="*"/&gt; &lt;/allow-from&gt; &lt;grant-to&gt; &lt;resource path="/" include-subpaths="true" /&gt; &lt;/grant-to&gt; &lt;/policy&gt; &lt;/cross-domain-access&gt; &lt;/access-policy&gt; </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>