vote up 2 vote down star

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?

flag

57% accept rate
'implement external component'? What are you trying to achieve? – Nick Johnson Oct 29 at 9:49
gae cant use xmpp, so i thinking of install external openfire and use pubsub . my smack pubsub client will be install on external server as well – cometta Oct 29 at 10:48

1 Answer

vote up 1 vote down

App Engine supports a very limited subset of XMPP. Basically, you can send messages (through the API), and you can receive messages (they come in as HTTP requests).

Java API
Python API

You could rig up an external component on your existing XMPP server, to send and receive messages with your app engine code. That component would have to keep track of whatever it is you want to send and receive from your app.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.