Hi, I'm developing an application using Tapestry 4 and I have a question regarding session timeout. when the session timeout I'm trying to create a callback object to an IExternaLPage using this code in my pageValidate method
Callback callback = new ExternalCallback(pageName, getPageName(),getRequestCycle().getListenerParameters()); Login login = getLogin(); login.setCallback(callback); throw new PageRedirectException(login); The problem is that getListenerParameters is always null. What or how can I restore the state of the page after Login. Thanks, Simon