Sto usando asmack l'ultima versione (asmack-android-8-source-0.8.3) in un progetto Android e Ho il seguente codice :(a) Smack's IQ.toXml() restituisce XML senza elementi figlio personalizzati
connection.addPacketListener(new PacketListener()
{
@Override
public void processPacket(Packet p)
{
if(p.getPacketID().equals("v3"))
{
Log.e("TAG", p.toXML());
}
}
}, new IQTypeFilter(IQ.Type.RESULT));
Packet iq = new Packet()
{
@Override
public String toXML()
{
String str = "<iq type='get' id='v3'><getservertime xmlns='urn:xmpp:mrpresence'/></iq>";
Log.e("TAG", str);
return str;
}
};
//sends <iq type='get' id='v3'><getservertime xmlns='urn:xmpp:mrpresence'/></iq>
connection.sendPacket(iq);
nel debugger risposta è ok e questo è previsto:
<iq type="result" id="v3" to="[email protected]/Smack">
<servertime xmlns="urn:xmpp:mrpresence" utc="2013-06-28T11:45:32.380Z" local="2013-06-28T07:45:32.380Z"/>
</iq>
ma p.toXML() in The Listener pacchetto, la "DB" tag che manca:
<iq id="v3" to="[email protected]/Smack" type="result"></iq>
Qualche suggerimento su cosa sto facendo male?
Ho aggiunto un PacketExtensionProvider con ProviderManager.getInstance(). AddExtensionProvider (packetExtensionProvider) come in questo tutorial: http://oneminutedistraction.wordpress.com/2010/08/31/receiving-pep-broadcast-2/ ma il mio PacketExtensionProvider non viene mai chiamato. Uso ancora connection.addPacketListener()? Grazie. –
Ho anche guardato questo codice sorgente: github.com/rummble/jfexmpp e questo un github.com/redsolution/xabber-android ma senza successo :( –
@Flow puoi approfondire come creare un nuovo PacketExtension e registrarlo con ProviderManager. – Sushant