I have a silverlight app which try to access another site(hosted on JBOSS or Tomcat) by following way:
WebClient proxy;
//......
proxy.DownloadStringAsync(url); //this url point another site hosted by JBOSS or Tomcat with http. https not available for this site.
Silverlight is accessed with https. When I run the silverlight app and try to access another site, got message as below in popup:
Display mixed content?
then either choose Yea/No, the browser is crashed.
If I use http to access my silverlight app, every thing is fine.
Then this problem is supposed as crossdomain problem. A cross-domain xml file can be put on the JBOSS or Tomcat site. Not sure what the the policy file looks like. Any sample policy xml file for this case? Then I can put it on JBoss or Tomcat site and test it?
Comments: Found out and will try.