Flex - Security Sandbox violation - ERROR#2048

前端 未结 2 1617
小鲜肉
小鲜肉 2020-12-06 20:55

So if i put -http://xxx.xx.xx.x/website/website.html and try to use an HTTPService with in the swf to contact -https://yyy.yy.yy.y/resources/script, I get the sandbox error

相关标签:
2条回答
  • 2020-12-06 21:22

    Change the following line:

    <allow-access-from domain="*"/>
    

    to:

    <allow-access-from domain="*" secure="false" />
    

    You can read more about it at adobe.com...

    http://kb2.adobe.com/cps/142/tn_14213.html

    0 讨论(0)
  • 2020-12-06 21:47

    We found that Chrome will refuse self-signed SSL certificates but Firefox and Safari will plow on ahead. Try a different browser and see if that works for you.

    0 讨论(0)
提交回复
热议问题