如何使用JsJac实现群聊(MUC)?
我正在寻找使用 XMPP javascript 库 JSJac 实现群聊的示例代码。
I am looking for sample code to implement group chat using XMPP javascript library JSJac.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
刚刚使用 XMPP 与 muckl 4.4 和 OpenFire 完成了一次群聊。关键问题是让反向代理启动并运行。由于 JSJac 在很多情况下使用 http-bind,因此您必须与 http-bind 服务器进行通信。这些服务器通常与提供 JavaScript 文件的 Web 服务器位于不同的端口。
这样就会造成跨域违规,而且行不通。这是一个很好的链接来讨论它:
http://www.enavigo.com/ 2008/10/14/setting-up-jsjac-with-openfire-352/
Just completed an group chat using XMPP with muckl 4.4 and OpenFire. The key issue is getting the Reverse Proxy up and running. Since JSJac uses http-bind in many cases, you have to communicate with a http-bind server. These servers are usually on a different port than your web server providing your javascript files.
This causes cross-domain violations, and it won't work. Here is a good link that talks about it:
http://www.enavigo.com/2008/10/14/setting-up-jsjac-with-openfire-352/
假设您已经连接到 jabber (con),这里有一个有关如何连接到群聊的快速示例。
Assuming you already have a connection to jabber (con) here is a quick example for how to connect to a group chat.