2

我现在正在尝试使用 asmack-android-7.jar api 在 android 中构建 XMPP MUC 房间。首先,我创建了一个即时房间,然后在房间中添加了一个 muc 监听器。代码片段如下:

    //create the an instant room if the same room has not been created.
    MultiUserChat muc = new MultiUserChat(mConnection, roomJid);
    muc.create(ownerNickname);
    muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
    // join a room  and add listener 
   mMuc = new MultiUserChat(mConnection, roomJid);
   mMuc.join(vistorNickname);
   addListenerToMuc(mMuc);
   // the listener function
   private void addListenerToMuc(MultiUserChat muc){
    if(null != muc){
        muc.addMessageListener(new PacketListener() {

            @Override
            public void processPacket(Packet packet) {
                Log.i("processPacket", "receiving message");
                }
        });
    }
}

然后事情让我很困惑,首先,有时听众工作得很好,但是当我离开房间然后重新加入时,听众可能总是无法像这样处理消息:

 RCV  (723971008): <message id="FdkcR-24" to="寻李白@xjopenfire/KascendVideo" type="groupchat" from="哈特的战争@conference.xjopenfire/nutch"><body> from nutch</body></message>

但是,当出现这样的消息时,侦听器总是能很好地工作:

 <message id="S7JfM-111" to="寻李白@xjopenfire/KascendVideo" type="groupchat" from="哈特的战争@conference.xjopenfire/hangzhou@video"><body>I love you</body><x xmlns="jabber:x:event"><offline/><delivered/><displayed/><composing/></x></message>

似乎带有一个或多个扩展名的消息总是运行良好,而没有扩展名的消息有时往往会失败。我真的很困惑,有人可以告诉我发生了什么吗?我会非常感谢你的想法。

我发现的另一个问题是,如果我先创建一个 Instant 房间,然后加入房间而不创建 MulitUserChat 的新对象,那么该房间不能被其他人加入,例如使用 spark 客户端,然后出现错误,说房间不存在,具体来说,代码片段是这样的:

MultiUserChat mMuc = new MultiUserChat(mConnection, roomJid);
        muc.create(ownerNickname);
        muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
        // join a room  and add listener 
       mMuc.join(vistorNickname);

我真的对这些事情感到沮丧,欢迎所有想法。非常感谢。

4

1 回答 1

0

我对第二个问题有一个简单的解决方案,您不必也不应在创建房间后立即加入。因为它们在某种程度上确实意味着相同的东西,而且我上面描述的现象与 smack 库的 create() 和 join() 函数的实现有关。

于 2013-03-22T10:16:28.563 回答