您是否需要在代码中添加一些内容来访问 crossdomain.xml 允许的资产?

发布于 2024-07-07 03:28:35 字数 139 浏览 8 评论 0原文

想知道我是否需要在 swf 中执行某些操作才能访问不同服务器上的资产,这意味着不仅仅是指定资产的 url。 flash 是否会在幕后处理“获取 crossdomain.xml 并验证所有内容”,或者除了简单地请求 swf 文件之外,我是否还需要包含一些特殊代码?

Wondering if I need to do something in my swf to be able to access the assets on a different server, meaning more than just specify the url to the asset. Will flash handle the 'go get crossdomain.xml and authenticate everything' behind the scenes or do I need to include some special code beyond simply requesting the swf file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幼儿园老大 2024-07-14 03:28:36

闪光灯会处理“go get”吗?
crossdomain.xml 并进行身份验证
一切都在幕后还是我
需要包含一些特殊代码
除了简单地请求 swf 文件之外?

如果发生任何跨域请求,Flash 将在域的根目录中查找 crossdomain.xml 文件。 例如,如果您从以下位置请求 XML 文件:http://mysubdomain.mydomain.com/fu/bar/

Flash 将检查 crossdomain.xml 文件是否存在于:http: //mysubdomin.mydomain.com/crossdomain.xml

如果您需要从其他位置加载 crossdomain.xml 文件,您可以通过 Security.loadPolicyFile 。 请记住,此跨域的位置会对您拥有的安全访问产生任何影响。

您可能还想阅读Flash Player 10 中的安全更改< /a>.

Will flash handle the 'go get
crossdomain.xml and authenticate
everything' behind the scenes or do I
need to include some special code
beyond simply requesting the swf file?

In the event of any cross-domain request, Flash will look for the crossdomain.xml file at the root of the domain. For example, if you are requesting an XML file from: http://mysubdomain.mydomain.com/fu/bar/

Flash will check if a crossdomain.xml file exist at: http://mysubdomin.mydomain.com/crossdomain.xml

If you ever need to load a crossdomain.xml file from a different location, you can do it via Security.loadPolicyFile . Bear in mind that the location of this crossdomain have any impact on the security access you have.

You may also want to read up on the security changes in Flash Player 10.

调妓 2024-07-14 03:28:36

如果您只是想访问另一个 swf,添加 crossdomain.xml 将为您完成所有工作,因为 Flash 会为您完成所有工作

If you're just trying to access another swf, adding the crossdomain.xml will do all the work for you since Flash will do it for you

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文