may i know what integration technique that you folks use to implement external component to an existing XMPP server (e.g. ejabberd or OpenFire) . Is it through sending xmpp message to another user@externaldomain directly or using mechanism like urlfetch?
may i know what integration technique that you folks use to implement external component
Share
Google app engine (Gae) does support XMPP just as CLIENT.
With XMPP Gae JAVA client feature you can:
SEND MESSAGE
RECEIVE MESSAGE
Remember that JIDs can just be yourappid@appspot.com OR foo@yourappid.appspotchat.com
because Google domains are not supported yet.
For example, you could craft a toy Gae application with a simple page with:
To test your application:
In case you have your personal XMPP server (openfire) up and running, simply skip step 1 and use your domain account to receive message from your fancy Gae App.
Have a look to XMPP message delivery to understand how this works.