Assuming you log in with rememberMe enabled, a Cookie will be set. Logging out removes that Cookie. Besides some other attributes a Cookie has a Path, which usually is your context path. If not set explicitly it is "". In order to modify/remove a cookie not only the name must be match, but also the path. While reading a Cookie (from Header), the path however is not available and thus not stored in the Cookie. Using that very same object, just changing the value or "time-to-live" (to remove it) and saving it, is not enough with one exception: where the context path = "" (which it is while running the examples with JettyLauncher out of Eclipse). Deploying the examples with a context path of e.g. /wicket-examples finally showed the problem. I changed FormComponentPersistenceManager.remove to add the path (getRequest().getContextPath()). Since than (2004-11-19) the problem should be fixed.
regards Juergen On Mon, 29 Nov 2004 13:55:42 +0100, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > >>- Another issue I had (not able to sign out with Firefox) and that I > >>mailed about two weeks ago is solved now as well. > >> > >> > > > >That was fixed before already. > > > >regards > >Juergen > > > > > > > > Ah, ok. Do you know what that problem was? > > Regards, > > > > Eelco > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://productguide.itmanagersjournal.com/ > _______________________________________________ > Wicket-develop mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/wicket-develop > ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Wicket-develop mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/wicket-develop
