Hi,
I am using the smack api and developing a xmpp client in java. When I am receiving the messages I see that the message recieved
<message to="-------" from="------" type="chat">
<x xmlns="jabber:client">
<result/>
<param/>
</x>
</message>
But the actual message is below when I see from the RAW packets recieved.
<message xmlns='jabber:client' to='----------' type='chat' from='---------'>
<x>
<tag1 tag1data='------------'>
<params>
<param name='-----' value='----'/>
<param name='-----' value='-----'/>
.
.
.
</params>
<result status='200'/>
</tag1>
</x>
</message>
Any Help would be great!
Thanks,
Goa