Cross domain policy is failing and I am not sure why. It works on this source, playable from multiple locations:
but fails
My xml is set wide open
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" secure="false"/>
<site-control permitted-cross-domain-policies="all"/>
<allow-http-request-headers-from domain="*" header="*"/>
</cross-domain-policy>
EDIT
I found the issue, the H in http was capitalized, thus creating the error… how silly.