我正在努力倾听联系人对VCard的更新。我试图通过发送一个自定义存在来执行此操作,同时在调试输出中更新VCard。时,我发现,每当发送这样的自定义存在时,它的联系人将收到存在节。不幸的是,当联系人的packetListener无法检测到传入的数据包时,那么添加到连接的所有侦听器似乎都已被删除, 虽然调试仍能正常工作,但是之前可以检测到的其他数据包无法监听。 我的一些代码片段就像这样:
// to update VCard
mVCard.load(mXMPPConnection);
mVCard.setField(XmppUserInfo.tagHeadIcon, userInfo.getHeadIconUrl());
mVCard.setField(XmppUserInfo.tagGender, userInfo.getGender());
mVCard.setField(XmppUserInfo.tagNickname,userInfo.getNickname());
mVCard.setField(XmppUserInfo.tagAccount, userInfo.getAccount());
mVCard.setField(XmppUserInfo.tagSignnature, userInfo.getSignnature());
mVCard.save(mXMPPConnection);
// to send custom presence to subscribers to renew infomation
Presence presence = new Presence(Type.available);
presence.addExtension(new UserInfoExtension(userInfo));
mXMPPConnection.sendPacket(presence);
我的听众是这样的:
//add Listener
PacketListener packetListener = new PacketListener() {
@Override
public void processPacket(Packet packet) {
if(null != packet){
Log.i(TAG,"UserInfo is being updated" );
Log.i(TAG, "the packet is " +packet.toXML());
}
}
}
};
xmppConnection.addPacketListener(packetListener, new PacketFilter() {
@Override
public boolean accept(Packet p) {
return true;
}
});
但我不能说日志中的prescen节虽然我可以从调试的输出接收存在。有谁能够帮我?非常感谢。
接受的存在是这样的:
<presence id="AL4As-4" from="20298509@openfire/ad9a8862" to="20298468@openfire">
<user xmlns="kascend:video:xmpp:userinfo">
<info account="133787245" gender="f" signnature="wwwwwww" nickname="bbbb"/>
</user>
<c xmlns="http://jabber.org/protocol/caps" hash="sha-1" node="http://www.igniterealtime.org/projects/smack/" ver="O1jiM4C3yPnCFLp9hBZUn4AgVXs="/></presence>
答案 0 :(得分:0)
我很抱歉误导你。最后,事实证明问题是由我的扩展提供程序中的错误引起的,这可能会使程序进入无限循环。我修正了这个错误,现在一切正常。