什么是 Security.allowDomain("*")

发布于 2024-12-17 05:21:15 字数 192 浏览 0 评论 0 原文

我对安全相关问题很陌生。我收到了新的要求,例如“Thread – Security.allowDomain("*") 用于 Flash 电影中。”

我在 Visual Studio 2008 中搜索了 security.allowdomain("*"),但没有找到任何关键字。

请告诉我。它到底是什么。

i am new to security related issues. i got new requirement like "Thread – Security.allowDomain("*") is used in a Flash movie.".

I have searched for security.allowdomain("*") in Visual Studio 2008. but did not get any keyword.

Please tell me. what it is exactly.

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

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

发布评论

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

评论(1

街角卖回忆 2024-12-24 05:21:15

Security.allowDomain() 允许来自不同域的文件lodem 访问原始文件中的脚本。例如我从www.domainB.com加载一个文件到www.domainA.com下的文件,您需要允许www.domainB.com访问您的数据。

例如 YouTube AS3 播放器类就是这样工作的。

crossdomain.xml 中允许的域的 XML 定义允许将文件从服务器加载到不同的域。

The Security.allowDomain() allows a file lodem from a different domain access scripts in the original file. For example I load a file from www.domainB.com to file under www.domainA.com, you need to allow www.domainB.com to access your data.

For example the YouTube AS3 player class works this way.

The XML definition of allowed domains in crossdomain.xml allows to load files from your server to different domains.

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