RE: Losing session information

2008-11-04 Thread Dane Laverty
@wicket.apache.org Subject: Re: Losing session information a couple of things to look into: access to Session is not synchronized, so make sure you sync everything yourself. if you have a stateless page it will not store the session in httpsession, you might have to do that manually by calling

Re: Losing session information

2008-11-03 Thread Igor Vaynberg
a couple of things to look into: access to Session is not synchronized, so make sure you sync everything yourself. if you have a stateless page it will not store the session in httpsession, you might have to do that manually by calling session.bind() -igor On Mon, Nov 3, 2008 at 11:22 AM, Dane