[appengine-java] How can I place JSession into cookie. Google app engine.

2010-04-06 Thread Alexander Rodnin

Сould you please tell me how to place the session identifier into the
cookie, if  you are working with google app engine.

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] How can I place JSession into cookie. Google app engine.

2010-04-06 Thread Ikai L (Google)
This seems redundant, even outside of App Engine. You wouldn't want to place
a JSessionId into a cookie, since that is identified *by* a cookie.

Likely what you are looking for is servlet session support. App Engine
supports this, albeit with gotchas:

http://code.google.com/appengine/docs/java/config/appconfig.html

http://code.google.com/appengine/docs/java/config/appconfig.htmlNote that
since session data is stored in a combination of memcache and persistent
store that you'll have to resave objects when they mutate. You'll also need
to manually garbage collect your session data.

2010/4/6 Alexander Rodnin alexander.rod...@gmail.com


 Сould you please tell me how to place the session identifier into the
 cookie, if  you are working with google app engine.

 Thanks.

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
 To post to this group, send email to
 google-appengine-j...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




-- 
Ikai Lan
Developer Programs Engineer, Google App Engine
http://googleappengine.blogspot.com | http://twitter.com/app_engine

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.