xmpp如何使用http绑定将消息推送到客户端
根据 wiki http://en.wikipedia.org/wiki/Extensible_Messaging_and_Presence_Protocol ,xmpp 正在使用 http绑定(而不是 http 池)将消息推送到客户端。
有人可以向我解释它是如何工作的吗?
According to wiki http://en.wikipedia.org/wiki/Extensible_Messaging_and_Presence_Protocol , xmpp is using http binding (rather an http pooling) to push message to client.
Can anybody explain to me how it works?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XMPP 通过 TCP 连接将消息推送到客户端。您所指的(http轮询)是使XMPP通过HTTP工作的解决方案。获取有关 XMPP 的书籍或访问 http://xmpp.org 并阅读相关 RFC 以了解更多详细信息。
Base RFC 为您提供有关 XMPP 基本规范的更多详细信息、它如何通过 TCP 工作并将消息推送到客户端。要使其通过 HTTP 工作,您必须了解并实施 XEP-0124 和 XEP-0206。希望它对您的追求有所帮助。
XMPP pushes message to client over TCP connection. What you are referring to (http polling) is a solution to make XMPP work over HTTP. Get a book on XMPP or visit http://xmpp.org and read related RFC's for more detail.
Base RFC's gives you more detail into XMPP base spec, how it works over TCP and pushes messages to client. To make it work over HTTP, you will have to understand and implement XEP-0124 and XEP-0206. Hope it helps you in ur quest.