Wowza Community

crossdomain xml ignored for one source, but not another

Cross domain policy is failing and I am not sure why. It works on this source, playable from multiple locations:

http://ssdcougars.tv/?p=1898

http://ssdcougars.tv/?p=1754

but fails

http://ssdcougars.tv/?p=1864

http://ssdcougars.tv/?p=1859

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.

I removed

secure="false"/>
	<site-control permitted-cross-domain-policies="all"/>
	<allow-http-request-headers-from domain="*" header="*"/>

and now get : Cannot Load M3U8: no levels in manifest

Hi,

To clarify, are you trying to limit your crossdomain.xml to include only specific domains? You should be able to remove

<allow-http-request-headers-from domain="*" header="*"/>

however, you do need

secure="false"/>
	<site-control permitted-cross-domain-policies="all"/>

Michelle