After a while, the page object is "cleaned from the pool", i.e. destroyed. When you make a new request, a new page object is created.
If you encounter this problem, this usually means that you rely on some properties to be persistent, but they are not. You are also bound to have strange problems when multiple users access the application. Please check if you expect certain properties to be persistent, but they are not marked as such in the .page file. ----- Original Message ----- From: "Edward Scanzano" <[EMAIL PROTECTED]> To: "Tapestry users" <[email protected]> Sent: Tuesday, July 19, 2005 6:02 AM Subject: Re: Strange timeout behavior > I did that. In some cases I am on page A and I get the > object for page B and then execute some method on it > before I execute cycle.activate(page) > > When the page is idle for some time is something > happening to the variables that I am setting in page > B. > > E > > --- Mind Bridge <[EMAIL PROTECTED]> wrote: > > > Try to make the get and set methods for that > > property abstract > > > > ----- Original Message ----- > > From: "Edward Scanzano" <[EMAIL PROTECTED]> > > To: "Tapestry users" > > <[email protected]>; "john mcteague" > > <[EMAIL PROTECTED]> > > Sent: Monday, July 18, 2005 11:50 PM > > Subject: Re: Strange timeout behavior > > > > > > > I tried that and I get this exception > > > > > > Unable to enhance class > > > com.intaglio.webclient.site.CFolderList because it > > > implements a non-abstract write method for > > property > > > 'pageParameters'. > > > > > > > > > > > > --- john mcteague <[EMAIL PROTECTED]> wrote: > > > > > > > I had a similar problem recently. The solution > > was > > > > to change the > > > > direction of the parameters from 'in' to 'auto'. > > > > > > > > On 7/18/05, Edward Scanzano > > <[EMAIL PROTECTED]> > > > > wrote: > > > > > Hi all, > > > > > > > > > > I have a situtation where my application runs > > > > normally > > > > > as I click through it. Parameters are being > > passed > > > > to > > > > > components correctly, etc. However, if I let > > the > > > > > application sit idle for a short time (maybe > > 10 > > > > > minutes, not sure of the exact time) then when > > I > > > > click > > > > > on those same links I get exceptions that are > > > > caused > > > > > by component parameters being null. The > > session > > > > has > > > > > not timed out yet. > > > > > > > > > > What is causing this? > > > > > > > > > > Thanks > > > > > E > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > > To unsubscribe, e-mail: > > > > [EMAIL PROTECTED] > > > > > For additional commands, e-mail: > > > > [EMAIL PROTECTED] > > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > To unsubscribe, e-mail: > > > > [EMAIL PROTECTED] > > > > For additional commands, e-mail: > > > > [EMAIL PROTECTED] > > > > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: > > [EMAIL PROTECTED] > > > For additional commands, e-mail: > > [EMAIL PROTECTED] > > > > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: > > [EMAIL PROTECTED] > > For additional commands, e-mail: > > [EMAIL PROTECTED] > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
