Hi Peter, On Sep 28, 2:05 pm, Peter <[EMAIL PROTECTED]> wrote: > Hi all, > I'm still wacking away at my first google app. Quite a transition > from the java web apps I'm used to writing. > > I'm wanting to be able to recognise a user (without using the gmail > thing) for a chat application. The idea being the anonymous users > will show up at the site and I'll assign them a username like > 'guest1145'. Then any messages they type would show as from that > user.
Just use appenginepatch. Among other things it adds session support to Django: http://code.google.com/p/app-engine-patch/ Though, I doubt that App Engine is well-suited for a chat application because you have to poll the server for updates which is slow and you might hit quota limits very quickly. I'd recommend that you build a chat server in Erlang on top of EC2, instead, but if this is just a fun app then App Engine should be fine. Bye, Waldemar Kornewald --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
