3

我已经安装并配置了 Prosody 服务器。它在标准 localhost:5222 上侦听。在配置文件中添加了管理员 - user1@example.com。对服务器的每个请求都以错误结束:

<stream:stream xmlns:stream="http://etherx.jabber.org/streams" xmlns="jabber:client" id="" version="1.0">
    <stream:error>
        <not-well-formed xmlns="urn:ietf:params:xml:ns:xmpp-streams"/>
    </stream:error>
</stream:stream>

作为客户,我想使用 strophe.js。我只发送存在节($pres)。这是我的代码。

'use strict';

angular.module('xmppTestApp')
    .controller('ChatCtrl', function () {

    var vm = this;

    var url = "http://localhost:5222";
    var connection = null; 

    var output = document.getElementById("output");

    function log(message) {
        var line = document.createElement("div");
        line.textContent = message;
        output.appendChild(line);
    }

    function connectHandler(cond) {
        if (cond == Strophe.Status.CONNECTED) {
            log("connected");
            connection.send($pres());
        }
        else {
            log("not connected");
        }
    }

    vm.connectB = function() {
        var username = document.getElementById("username").value;
        var password = document.getElementById("password").value;

        console.info(url);
        console.info(username);
        console.info(password);

        connection = new Strophe.Connection(url);
        connection.connect(username, password, connectHandler);
    }
});

在控制台中我看到错误:

XMLHttpRequest cannot load http://localhost:5222/. No 'Access-Control-Allow-Origin' header is present on the requested resource. 
Origin 'http://localhost:9000' is therefore not allowed access.

如何将 Access-Control-Allow-Origin 标头添加到我的请求中?

当我尝试向 localhost:5222 发送请求(没有 http)时,我得到:

XMLHttpRequest cannot load localhost:5222. Cross origin requests are only supported for HTTP.

当我通过 websocket 发送它时,我得到:

WebSocket connection to 'ws://localhost:5222/' failed: Error during WebSocket handshake: Unexpected response code: 200 

Fiddler 向我提供协议违规报告:

The server didn't return properly-formatted HTTP Headers. Maybe missing altogether 
(e.g. HTTP/0.9), maybe only \r\r instead of \r\n\r\n?
4

1 回答 1

6

首先,看起来您正在尝试直接连接到端口 5222(通常用于 XMPP),但是为了从客户端网页使用 Strophe,您必须使用 HTTP-Binding(又名 BOSH)。

XMPP 与 BOSH

Strophe使用XMPP,但它的独特之处在于它实际上并不使用 XMPP 协议传输数据,而是依赖于 BOSH(即同步 HTTP 上的双向流)。这是因为 XMPP 协议旨在让客户端和服务器始终保持连接,而我们都知道这不是 HTTP 的工作方式。简单来说,BOSH 允许您的 HTTP 客户端异步接收数据,而无需显式地发出请求。如果您对 BOSH 有更多疑问,请告诉我,我会尽力解释它的作用以及您需要它的原因。

在连接 Strophe 之前,您必须在韵律中启用此功能,查看此链接以进行设置。

Prosody Docs - 设置 BOSH

设置 BOSH 后,您需要更改客户端代码以使用不同的地址。您可能已将 BOSH 的路径+端口设置为:5280/http-bind/. 此时,您需要确保 Strophe 使用的是此 URL,而不是实际的 XMPP 端口 5222。

最后,您的网站域和端口之外的任何资源都需要 CORS。在您的示例中,您的客户端必须向与页面本身(Strophe 和 Prosody 之间的连接)在不同端口 + 域上运行的 URL 发出请求。好消息是,Prosody 已经支持 CORS 并且启用它非常简单。所有这些都在我之前链接的页面上进行了更详细的解释。

希望有帮助!

于 2014-12-16T21:01:25.280 回答