There's a problem with my app, where clicking on a link would generate 
an ArrayOutOfBoundsException. However, pressing the back button and 
clicking on any other link in the page would cause an infinite loop in 
the getPage method of Session, between lines 405 and 415 (Wicket 
1.2.2),where the current thread waits and checks untill its equal (?) to 
the retrieved thread from the usedPages Map.

while (t != null && t != Thread.currentThread())
{
    try
    {
        wait(1000);
    }
    catch (InterruptedException ex)
    {
        throw new WicketRuntimeException(ex);
    }
    t = (Thread)usedPages.get(id);
}

Has anybody a clue what's making the Session behave like this ?

Iman

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to