Hi.
I'm using a login listener that does something like this:
----------------------------------
try
{
        page = cycle.getPage(...);
        page.login(...); // throws AuthenticationException
        return page;
}
catch (AuthenticationFailedException e)
{
        // --> Is a cleanup necessary here?
        return null;
}
----------------------------------
If I get a page with getPage(), and then an AuthenticationException is thrown, don't I need to return that page to the pool again somehow?

--Martin

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to