flash data integration:
I'm seeing a strange problem with XML.load() in Flash player 8/9 when used with
FireFox. I have a crossdomain.xml file setup which works great for IE 6/7 but
gets blocked completely in FireFox. Here is my scenario:
swf on
www.pd.mydomain.com accessing api.pd.mydomain.com with crossdomain.xml
file:
<cross-domain-policy>
<allow-access-from domain="*.pd.mydomain.com"/>
</cross-domain-policy>
This works in the flash debugger env and when I preview in service using IE
but not when in FIreFox. I can in fact see the request come in and 200 for the
crossdomian.xml but not the subsequent request for the feed. Flash seems to
not let it past security and silently fails. I'm wondering if this is due to
any new security features that FireFox has implemented or if I just have the
wrong setup with the cross domain file. I moved my xml api to the same host
(
www.pd.mydomain.com) and it worked just fine but I need this api to live in a
different sub domain. Any body seeing similar behavior? Again, this ONLY fails
in FIrefox but works fine in IE.