Is it possible to use XMPP XEP - xml request directly in an android application. Currently I am doing the XMPP chat application with aSmack library, but in some cases the library is not working as they documented. So that I am planning some other parallel way, can we use xep xml requests directly in an android xmpp chat application?
For example I want to find out the user joined rooms,
I am using getJoinedRooms(Connection, User) in the aSmack instead can I use this xml request as documented in the <iq from='hag66@shakespeare.lit/pda'
id='zb8q41f4'
to='chat.shakespeare.lit'
type='get'>
<query xmlns='http://jabber.org/protocol/disco#items'/>
</iq>
If it is possible how can I do that?