[appengine-java] Re: HttpSession handling question

2009-09-04 Thread Jason (Google)
Hi Marton. Yes, you need to explicitly call setAttribute() when you modify any object in the session. Otherwise, the object won't be updated in App Engine's cache/datastore, which are the mechanisms it uses to back sessions - Jason On Thu, Sep 3, 2009 at 2:11 AM, Marton Papp mapr...@gmail.com

[appengine-java] Re: HttpSession handling question

2009-09-03 Thread leszek
Have you enabled session ? By default it is read-only. WEB-INF/appengine-web.xml. sessions-enabledtrue/sessions-enabled http://code.google.com/appengine/docs/java/config/appconfig.html --- Enabling Sessions App Engine includes an implementation of sessions, using the servlet session