Can RTMPT streaming be limited using crossDomain? We are hosting an Red5 server on port 80 and port 1935. I would expect that the crossdomain file would have a point for RTMPT that runs on the same port as HTTP.
I have created the crossdomain.xml
file in the webapps/ROOT
folder:
<?xml version="1.0" encoding="UTF-8"?>
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all" />
<allow-access-from domain="*.mydomain.com" />
<allow-http-request-headers-from domain="*.mydomain.com" headers="*" secure="false" />
</cross-domain-policy>
However, I am able to access streams successfully from players(flash swf) embedded on other domains.
So I am reaching the conclusion I cannot limit playback to take place only from my webpage.
I'm using http://www.wowza.com/resources/3.5.0/examples/LiveVideoStreaming/FlashRTMPPlayer/player.html to pull the RTMPT stream.
Does flash respect crossdomain.xml in relation to RTMPT ?