Silverlight Rest Service, Security Exception - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:29:16Z http://stackoverflow.com/feeds/question/254899 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/254899/silverlight-rest-service-security-exception 3 Silverlight Rest Service, Security Exception Kris Erickson 2008-10-31T20:46:53Z 2008-10-31T21:29:29Z <p>I am trying to get Silverlight to work with a quick sample application and am calling a rest service on a another computer. The server that has the rest service has a clientaccesspolicy.xml which looks like:</p> <pre><code>&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>And is being picked up (at least according to the the network traces I have run), and there is no request for crossdomain.xml. The C# code looks like:</p> <pre><code>public Page() { InitializeComponent(); string restUrl = "http://example.com/rest_service.html?action=test_result"; WebClient testService = new WebClient(); testService.DownloadStringCompleted += new DownloadStringCompletedEventHandler(testService_DownloadStringCompleted); testService.DownloadStringAsync(new Uri(restUrl, UriKind.Absolute)); } void testService_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) { if (e.Error == null) { LoadTreeViewWithData(e.Result); } } </code></pre> <p>However, I always get the following Security Error back:</p> <pre> {System.Security.SecurityException ---> System.Security.SecurityException: Security error. at System.Net.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult) at System.Net.BrowserHttpWebRequest.c__DisplayClass5.b__4(Object sendState) at System.Net.AsyncHelper.c__DisplayClass2.b__0(Object sendState) --- End of inner exception stack trace --- at System.Net.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state) at System.Net.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result) at System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult result)} </pre> <p>What am I doing wrong? And why doesn't the security error tell me some more useful information?</p> http://stackoverflow.com/questions/254899/silverlight-rest-service-security-exception/255014#255014 3 Answer by C. Dragon 76 for Silverlight Rest Service, Security Exception C. Dragon 76 2008-10-31T21:29:29Z 2008-10-31T21:29:29Z <p>If you haven't already done so, I'd first try changing the restUrl to something simpler like a static HTML page on the same server (or if need be on your own server) just to verify your main code works.</p> <p>Assuming the security exception is specific to that REST URL (or site), you might take a look at the <a href="http://msdn.microsoft.com/en-us/library/cc189008(VS.95).aspx" rel="nofollow">URL Access Restrictions in Silverlight 2</a> article. There are some non-obvious security rules involving file types and "internet zones" in addition to the more well-known cross domain rules.</p> <p>I second the complaint about many exception messages in Silverlight not being very helpful. The above referenced MSDN article contains an amusing note: </p> <blockquote> <p>When users get an error that results from one of these access policies being violated, the error may not indicate the exact cause. </p> </blockquote>