If I recall correctly we had a similar problem a little while ago.
As it turned out the page was requested twice but only the first was rendered.
The reason the page was requested twice was because we had something
like this on our page <img src />
For some reason the absence of a valid source tag triggers the browser
into requesting the page again which it then tries to use as the image
(which will fail offcourse).
This behavior is documented somewhere but i forgot where.

Maybe this is the case with your page as well.

Maurice

On Feb 8, 2008 2:35 PM, Federico Fanton <[EMAIL PROTECTED]> wrote:
> On Fri, 8 Feb 2008 12:50:34 +0100
> Federico Fanton <[EMAIL PROTECTED]> wrote:
>
> > My problem is that if I _quickly_ doubleclick
> > on a column header (even with no data in the table),
> > I get a PageExpiredException. I tried debugging
> > this, so I saw that WicketServlet receives two
> > calls, and the second one triggers the exception..
>
> I see that every click on the column header triggers a request for a 
> different version of the current page, but SecondLevelCacheSessionStore holds 
> only the last one.. Am I right? So, a doubleclick generates two requests for 
> the same version, but the first one "removes" it, so the second one misses.. 
> Am I doing something wrong?
>
>
>
> ---------------------------------------------------------------------
> 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]

Reply via email to