Re: Wicket 1.5 and GAE

2010-10-28 Thread Alex Objelean
Issue created: https://issues.apache.org/jira/browse/WICKET-3138 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-and-GAE-tp3016185p3016762.html Sent from the Users forum mailing list archive at Nabble.com.

Wicket 1.5 and GAE

2010-10-27 Thread Alex Objelean
Is there a way to make wicket-1.5 to work with Google App Engine? Thanks, Alex -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-and-GAE-tp3016185p3016185.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Wicket 1.5 and GAE

2010-10-27 Thread Igor Vaynberg
you will need to provide your own page store, everything else will work i think. -igor On Wed, Oct 27, 2010 at 12:52 PM, Alex Objelean alex.objel...@gmail.com wrote: Is there a way to make wicket-1.5 to work with Google App Engine? Thanks, Alex -- View this message in context:

Re: Wicket 1.5 and GAE

2010-10-27 Thread Ben Tilford
Has the extension point for setting your page store changed? I believe newSessionStore() has been removed in 1.5 In wicket 1.4 this is what was needed in you Application @Override protected void init() { super.init(); //remove thread monitoring from

Re: Wicket 1.5 and GAE

2010-10-27 Thread Alex Objelean
I was expecting to have a PageStore already available, instead of implementing one from scratch. Is it possible to add one to the trunk? Thanks! Alex -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-and-GAE-tp3016185p3016212.html Sent from the Users forum

Re: Wicket 1.5 and GAE

2010-10-27 Thread Igor Vaynberg
a purely http session based store is something that will be added sometime soon. do create a jira issue so we wont forget :) -igor On Wed, Oct 27, 2010 at 1:05 PM, Alex Objelean alex.objel...@gmail.com wrote: I was expecting to have a PageStore already available, instead of implementing one

Re: Wicket 1.5 and GAE

2010-10-27 Thread Igor Vaynberg
storing pages is part of what the new IPageManager interface does. see DefaultPageManagerProvider and Application.setPageManagerProvider() -igor On Wed, Oct 27, 2010 at 1:00 PM, Ben Tilford b...@tilford.info wrote: Has the extension point for setting your page store changed? I believe