How do I enable session support in Google App Engine (Java)? -
how enable gae session support using java?
also, related question: want store small amount of state in sessions (basically, key) -- gae store information in client-side cookie, , if so, how secure approach?
thanks!
for first question. in appengine-web.xml have:
<?xml version="1.0" encoding="utf-8"?> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> ... <sessions-enabled>true</sessions-enabled> </appengine-web-app>
Comments
Post a Comment