I am using google appengine for my gtalk agent , I want to get the username of the gtalk user how can I get it ?
for your reference, check this
XMPPService xmpp = XMPPServiceFactory.getXMPPService();
//STEP 2
Message msg = xmpp.parseMessage(req);
JID fromJid = msg.getFromJid();
I am using the above things in the beginning .....