Hello All,
I am developing an application which runs on Google App Engine (GAE). I have
my persistent datastore such that every so often there are scheduled
down-times, during which nothing can be persisted to the datastore without
an error being thrown.
Currently, my web application class extends
org.apache.wicket.protocol.http.WebApplication and has the relevant method
override:
@Override
protected ISessionStore newSessionStore()
{
return new HttpSessionStore(this);
}
so the app does not store sessions to file (write to file are not allowed in
GAE) but to the datastore instead.
I love Wicket and I know that it stores stuff server-side to work its magic.
Does anyone know a way for my app to suspend Wicket's use of sessions at
run-time?
For background information on my question, I invite you to visit:
http://groups.google.com/group/google-appengine-java/browse_thread/thread/7744eef8e1e39684
Many thanks for anyone's attention,
Ian
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/The-disabling-of-sessions-during-a-datastore-down-time-period-tp3301011p3301011.html
Sent from the Users forum mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]