3

2 つのクライアントが互いにチャットできるチャット アプリケーションに node-XMPP を使用しています。問題は、あるクライアントからサーバーにデータを取得していることですが、サーバーから別のクライアントにデータを送信する方法がわかりません。
私のサーバーコードは次のとおりです。

'use strict';
    var xmpp = require('../index')
      , c2s = null
      , Client = require('node-xmpp-client')
      , ltx = require('node-xmpp-core').ltx
      , util = require('util');

    var startServer = function(done) {
        c2s = new xmpp.C2SServer({
            port: 5222,
            domain: 'localhost',
            preferred: 'PLAIN'
        })
        c2s.on('connect', function(client) {
           c2s.on('register', function(opts, cb) {
                console.log("REGISTER");
                cb(true);
            });
            client.on('authenticate', function(opts, cb) {
                if ('secret' === opts.password) {
                    return cb(null, opts)
                }
                console.log('FAIL')
                cb(false)
            });

            client.on('online', function() {
                console.log('ONLINE')
            });
            client.on('stanza', function(stanza) {
                console.log('STANZA', stanza.root().toString())
                 var from = stanza.attrs.from
                 stanza.attrs.from = stanza.attrs.to
                 stanza.attrs.to = from
                 client.send(stanza)
            });
            client.on('disconnect', function(jid) {
               console.log("client DISCONNECT=>");
            });
        });
         if (done) done()
    };

    startServer(function() {})

私のクライアントコードは次のとおりです。

   var Client = require('../index.js')
        ,util = require('util');

    var client = new Client({
        jid: process.argv[2],
        password: process.argv[3],
        host :"localhost",
        port:5222,
        reconnect :true
    });

    client.on('online', function() {
        console.log('online');
    });
    client.on('error',function(err){
        console.log("error=>"+err);
    });

    client.on('stanza', function(stanza) {
        console.log('Incoming stanza: ', stanza.toString())
    });

    client.on('disconnect',function(){
        console.log("server diconnected");
    });

別のクライアントからデータを送信すると、データがサーバーに送信されますが、サーバーはクライアントにデータを送信していません。
前もって感謝します。

4

2 に答える 2

0
client.on('stanza', function(stanza) {
            console.log('STANZA', stanza.root().toString())
             var from = stanza.attrs.from
             stanza.attrs.from = stanza.attrs.to
             stanza.attrs.to = from
      --->   client.send(stanza)

});

u はスタンザを送信元と同じクライアントに送信しています。正しい受信クライアントに送信します。
私はすでにここに答えました。ご参照ください

ノード xmpp メッセージが正しい宛先に送信されない

于 2015-08-23T14:39:27.367 に答える
0
client.on('online', function() {
console.log("online");
var stanza = new xmpp.Element('message', { to: 'admin@localhost', type: 'chat', 'xml:lang': 'ko' }).c('body').t('aaaaaMessage from admin1');
//setInterval(sender,1000);

client.send(stanza);
console.log(stanza);

});

于 2015-08-17T07:34:10.597 に答える