I have an HTML5 app that will be a loading content (photos) from other sever. Before it was a flash app so simply crossdomain.xml would take care of that. Now, can I use the same crossdomain.xml file in the root?
here's the XML
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="localhost" secure="false" />
<allow-access-from domain="*" secure="false" />
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>
I'm trying and still getting error loading. Is there maybe any special method to implement that? I have access to both servers, the one with the HTML app and the other with the photos.