XMPP CORS域错误

时间:2015-07-15 08:58:16

标签: javascript xmpp openfire strophe

我用openfire创建了自己的聊天服务器。我尝试使用http进行http-bind,我能够与openfire服务器绑定。我的Web应用程序在https上运行,所以我尝试使用https请求进行绑定,因为原因(CORS请求失败)我收到“CROS origin error”。我允许访问来源为*。在HTTP绑定跨域策略中。

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
 <site-control permitted-cross-domain-policies="all"/>
 <allow-access-from domain="*" to-ports="5222,5223,7070,7443" secure="true"/>
</cross-domain-policy>

我的配置是否有任何问题。请给我一个解决方案。

提前致谢

0 个答案:

没有答案