vote up 1 vote down star
1

I would like to create a web IM chat system using Google App Engine using XMPP possibly.

It would allow users of a social network to talk with each other. Is this possible using GAE?

I haven't used GAE before. Does anybody know of any good examples/code which I could look into to get started?

flag

76% accept rate

2 Answers

vote up 0 vote down check

If all your communication is between users who are interacting with your site directly, there's no need to use XMPP, or benefit from it - just write your IM system into the site directly. XMPP support is designed for interaction with external IM services.

Alternately, you could embed the Google Talk gadget in your site, but that will require users to sign in to their Google accounts to use it.

link|flag
ok, the reason I asked about XMPP was because I needed real-time chatting software. So does GAE support COMET or something similar? – chris Nov 2 at 19:17
comet is not possible you could fake it using an external api? brightyellowcow.com/blog/… – Alfred Nov 3 at 1:25
The approach there is called 'long polling', and isn't supported in App Engine. – Nick Johnson Nov 3 at 16:27
@chris: No, not currently. Embedding the Google Talk gadget may be practical; using other external services is also an option. – Nick Johnson Nov 3 at 16:30
vote up 0 vote down

It's certainly possible. I would start with reading http://code.google.com/appengine/articles/using%5Fxmpp.html in order to get started.

link|flag
thanks for the response. I was looking at that document, but couldn't figure out if it was possible for two people using GAE to communicate with each other (without using an external XMPP server). Do you know if that is possible? – chris Nov 1 at 21:14

Your Answer

Get an OpenID
or

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