Skip to content Skip to sidebar Skip to footer

Gae Xmpp App Shows Invalid Jid Error

Currently I'm testing appengine-crowdguru-python this app by sending xmpp messages from http://localhost:8000/xmpp which has a form to post data .. I have filled from, to, chat (me

Solution 1:

A common behaviour of "get Jid" it's error if Resource (in login phase) it's not definied due to the Jid composition ( user @ server /resource). A "full jid" it's complete of Resource, so if it's null you can have a null pointer and so an error.

How to handle: SOLUTION 1: retrive just "bare Jid"

SOLUTION 2: define a resource (it's a custom name that represent your client).

Hope that's help.

Post a Comment for "Gae Xmpp App Shows Invalid Jid Error"