I have a video player on this site http://aiskacang.com/crawl/pseudo.html
The player loads a flv video file seeon.flv from another domain. Currently, even without a crossdomain.xml in the server where seeon.flv is located, the video is loaded fine. This is not the behavior I want or expect it to be.
I also tried putting a crossdomain.xml with the following content:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM
"http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="none"/>
</cross-domain-policy>
From firebug, I could see that there's a request to the crossdomain.xml before accessing the video file (seeon.flv). It returns the content fine , with the Content-type of application/xml, but it still allow the cross domain behavior.
Any idea ?