[appengine-java] Re: Session Example

2009-09-10 Thread Jason (Google)
To use sessions, you first have to enable them: http://code.google.com/appengine/docs/java/config/appconfig.html#Enabling_Sessions Once sessions are enabled, you work with them the same way you work with sessions in other J2EE environments. - Jason On Wed, Sep 9, 2009 at 4:18 AM, zahid wrote:

[appengine-java] Re: Session Example

2009-09-11 Thread Steve B.
I do not know if this is a bug or if it is already documented somewhere (I could not find this info when I searched): I just ran into a problem where session data worked fine in my local dev environment, but failed when I deployed to the App Engine. In the AppEngine logs I found a Runtime erro

[appengine-java] Re: Session Example

2009-09-14 Thread Jason (Google)
Thanks for the note Steve. App Engine's session implementation uses memcache and the datastore, and objects must implement Serializable to be stored in either. - Jason On Fri, Sep 11, 2009 at 11:36 AM, Steve B. wrote: > > I do not know if this is a bug or if it is already documented somewhere >