I have started working on a Silverlight application that is being hosted on an https:// site. I have put a crossdomain.xml file on the server and configured as follows, but it will not display the map. I can see the map from my local workstation when debugging the app. I see this message has been posted before, but the last statement I have seen said it wasn't available last August (2009), but should be within a few months. It is now almost Aug (2010)
Here is the mappage link: https://kiosk.memphispolice.org/sl/SilverlightApplication4TestPage.html Here is the content of the crossdomain.xml file: <?xml version="1.0" encoding="utf-8" ?> - <access-policy> - <cross-domain-access> - <policy> - <allow-from http-request-headers="*"> <domain uri="*" /> <domain uri="http://*" /> </allow-from> - <grant-to> <resource path="/" include-subpaths="true" /> </grant-to> </policy> </cross-domain-access> </access-policy>
Did you see this article Using service across scheme ? As far as I know, it's still valid. That means that if your application is hosted on an https server, you can't access image hosted on an http server.