Re: AbstractAjaxTimerBehaviour sets Transient object to null when same page in opened in new tab

2010-02-04 Thread LinaTomy
Thanks a lot Igor. This works!! igor.vaynberg wrote: if you keep working on the same page instance it is kept in http sessison and is not serialized. when you go to a new page it pushes the old instance out, forcing serialization, and setting the transient field to null. a proper way

Re: AbstractAjaxTimerBehaviour sets Transient object to null when same page in opened in new tab

2010-02-03 Thread Igor Vaynberg
if you keep working on the same page instance it is kept in http sessison and is not serialized. when you go to a new page it pushes the old instance out, forcing serialization, and setting the transient field to null. a proper way to do this would be to have an application-wide task manager. the

AbstractAjaxTimerBehaviour sets Transient object to null when same page in opened in new tab

2010-02-02 Thread Lina Thomas
Hi I have a Page on which I am have to execute a long running task when a form is submitted. This is what I do 1. I have a transient FutureTask member variable in the page 2. On submit of the form i create a callable and instantiate the FutureTask 3. I start the