1

maps.google.com's crossdomain.xml file is as follows:

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy 
  SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">

<cross-domain-policy>
  <site-control 
     permitted-cross-domain-policies="by-content-type" />
</cross-domain-policy>

Can you confirm that this effectively means "Access Denied" for Silverlight (and Flash), since there are no elements 'allow'ing any kind of access?

mackenir
  • 10,801
  • 16
  • 68
  • 100

3 Answers3

1

A Silverlight 4 Out-of-Browser application can ignore the crossdomain.xml policy file.

Michael S. Scherotter
  • 10,715
  • 3
  • 34
  • 57
0

Does it have to be Google Maps? Bing Maps has a great Silverlight Control. There is a good article about it on CodeProject as well as a nice Interactive SDK.

If it has to be Google Maps, check out the flagged answer in this thread which references another CodeProject article that may be helpful.

Joel Cochran
  • 7,139
  • 2
  • 30
  • 43
  • Yep, gotta be google maps - I am using the geocoding API that's on that server, rather than working with tiles. – mackenir Jul 07 '10 at 13:21
0

Well, it seems that Silverlight will not grant access to the domain given the content of this crossdomain.xml. I would still like an explanation of what the crossdomain.xml means, mind you.

mackenir
  • 10,801
  • 16
  • 68
  • 100