RE: Losing session information

2008-11-04 Thread Dane Laverty
To: users@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

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

Losing session information

2008-11-03 Thread Dane Laverty
My site has a form-based test on TestPage. Each question in the test has a Question object as its model. The Questions all sit in an ArrayList in a Test object. Each Question has a "markedAnswer" String, which stores the value of the selected answer. The problem is that, for some users, the "marked