You need a crossdomain.xml file to be served on the same port. Wowza serves an empty crossdomain.xml file by default.
http://[wowza-address]:1935/crossdomain.xml
You can modify this by putting your own crossdomain.xml in the Wowza /conf folder. This is very permissive example:
Code:
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*"/>
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>
Richard