什么是 Security.allowDomain("*")
我对安全相关问题很陌生。我收到了新的要求,例如“Thread – Security.allowDomain("*") 用于 Flash 电影中。”。
我在 Visual Studio 2008 中搜索了 security.allowdomain("*"),但没有找到任何关键字。
请告诉我。它到底是什么。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.