xmlsocket:// 协议是什么?
这个答案说“Flash Player现在看起来端口 843 上的策略文件”.. 我有一个正在侦听端口 843 的策略服务器,该服务器向 Flash 客户端发送 XML 策略。这够了吗?什么是“xmlsocket://”协议?这是否只是告诉 Flash 播放器我们在使用 loadPolicyFile() 方法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,有两种不同类型的策略文件,用于从外部域加载数据的跨域策略和有关套接字连接的策略文件。两个策略文件非常相似,因为它们都使用相似的结构化 XML 数据结构。
我相信
xmlsocket://
协议只是一个伪协议,因为它指示Security.loadPolicyFile
方法加载有关套接字的策略,而不是跨域策略访问外部数据。更多信息请访问 此 Livedoc 页面。
As I understand it there are two different types of policy files, cross domain policies for loading data from an external domain and policy files regarding socket connections. Both policy files are quite similar in that they both use a similar structured XML data structure.
I believe that the
xmlsocket://
protocol is merely a pseudo protocol in that it instructs theSecurity.loadPolicyFile
method to load a policy regarding sockets rather than a cross domain policy for accessing external data.More information can be found on this Livedoc page.