1

stropher.js を使用して XMPP サーバーに接続すると、接続ステータスが 1 = 接続が現在行われています。

このステータスの問題は何ですか。

接続用のコードは次のとおりです。

接続ステータスを返します。

$(document).ready(function () {
$('#login_dialog').dialog({
    autoOpen: true,
    draggable: false,
    modal: true,
    title: 'Connect to XMPP',
    buttons: {
        "Connect": function () {
            $(document).trigger('connect', {
                jid: $('#jid').val(),
                password: $('#password').val()
            });                
            $('#password').val('');
            $(this).dialog('close');
        }
    }
});
});

$(document).bind('connect', function (ev, data) {
    var conn = new Strophe.Connection("http://127.0.0.1:5280/http-bind");
    //"http://bosh.metajack.im:5280/xmpp-httpbind");

        conn.connect(data.jid, data.password, function (status) {           
    if (status === Strophe.Status.CONNECTED) {          
        $(document).trigger('connected');
    } else if (status === Strophe.Status.DISCONNECTED) {
        Hello.log("Status DISCONNECTED.");
        $(document).trigger('disconnected');
    }
});

 Hello.connection = conn;
});

 $(document).bind('connected', function () {
    // inform the user
    Hello.log("Connection established.");

   Hello.connection.addHandler(Hello.handle_pong, null, "iq", null, "ping1");

   var domain = Strophe.getDomainFromJid(Hello.connection.jid);

   Hello.send_ping(domain);

 });

 $(document).bind('disconnected', function () {
   Hello.log("Connection terminated.");

   // remove dead connection object
  Hello.connection = null;
});

電話ギャップを使用しています。

ありがとう

4

1 に答える 1