Re: [Wicket-user] Session Persistence in Wicket 1.2 - Recommendations?

2007-03-31 Thread Ryan Holmes
If you're using Tomcat, try the persistent manager with the file or JDBC based store. http://tomcat.apache.org/tomcat-5.5-doc/config/manager.html -Ryan On Mar 30, 2007, at 8:55 AM, dukejansen wrote: Does anyone have any good recommendations for how I get started with second level

[Wicket-user] Session Persistence in Wicket 1.2 - Recommendations?

2007-03-30 Thread dukejansen
Does anyone have any good recommendations for how I get started with second level session storage in Wicket 1.2, via persistence to disk, for (1) old page versions and (2) entire sessions when session expires? We can't move to 1.3 or 2.0, so I'm trying to get an understanding of what my options

Re: [Wicket-user] Session Persistence in Wicket 1.2 - Recommendations?

2007-03-30 Thread Igor Vaynberg
second level store involved some pretty heavy refactoring of the internals afaik, so i dont think you will get it working under 1.2 -igor On 3/30/07, dukejansen [EMAIL PROTECTED] wrote: Does anyone have any good recommendations for how I get started with second level session storage in

Re: [Wicket-user] Session Persistence in Wicket 1.2 - Recommendations?

2007-03-30 Thread dukejansen
Not even just writing my own session store that hides the complexity of the persistence? Or is that the point your making, that doing so would be difficult/impossible based on the Wicket 1.2 code? I feel like I've read about 1.2 having ability to do it, just not easily. Am I mistaken?

Re: [Wicket-user] Session Persistence in Wicket 1.2 - Recommendations?

2007-03-30 Thread Igor Vaynberg
i think a lot of internal api changed to allow for this to work well. for example pagemap is now an interface, its not in 1.2. things like that. feel free to give it a go though, i didnt do that refactor so im not 100% sure of what im talking about here :) -igor On 3/30/07, dukejansen [EMAIL

Re: [Wicket-user] Session Persistence in Wicket 1.2 - Recommendations?

2007-03-30 Thread Eelco Hillenius
Yeah, and the concept of a session store is new to 1.3 too. If you want to do something like that in 1.2 you should start with a custom session, and patch the setAttribute/ getAttribute methods for your needs. With a bit of creativity you should be able to come a long way, but the refactorings of