Re: Trying to make a singleton out of session

2007-09-03 Thread Eelco Hillenius
On 9/3/07, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I'm trying to make WebSession as a singleton available to all wicket applications in order to provide single sign on. That won't work just like that. If you want a wicket session object that is shared amongst all Wicket applications,

Re: Trying to make a singleton out of session

2007-09-03 Thread Eelco Hillenius
java.lang.IllegalStateException: Request processing executed 100 steps, which means it is probably in an infinite loop. This was fixed *after* beta 3 came out: an exception during error handling could result in a cycle. Eelco

Re: Trying to make a singleton out of session

2007-09-03 Thread Cristi Manole
I don't know why, but it works out of the box :) The only problem was that i was making this call mountBookmarkablePage(/index.html, Home.class); in the home application init. I moved it in another application (that takes care of signin) and it all the applications work like a charm. I have

Re: Trying to make a singleton out of session

2007-09-03 Thread Eelco Hillenius
On 9/3/07, Cristi Manole [EMAIL PROTECTED] wrote: I don't know why, but it works out of the box :) The only problem was that i was making this call mountBookmarkablePage(/index.html, Home.class); in the home application init. I moved it in another application (that takes care of signin)