0

What is the default session timeout in Google App Engine? How to set the session timeout in Google App Engine, in Struts 2 application. Any reference/docs on session in GAE? Thanks

JR Galia
  • 17,229
  • 19
  • 92
  • 144

1 Answers1

1

The Session Timeout setting should be done in a standard way via the web.xml and App Engine would ideally acknowledge it.

For e.g.

<session-config>
      <session-timeout>30</session-timeout> 
</session-config> 

This will set the timeout to 30 minutes.

Romin
  • 8,708
  • 2
  • 24
  • 28