> > The redirector implementation known by the sitemap:
> >
> >    public class SitemapRedirector implements Redirector {
> >      private boolean hasRedirected = false;
> >      private Environment e;
> >      public SitemapRedirector (Environment e) {
> >        this.e = e;
> >      }
> >      public void redirect (String url) {
> >        e.redirect(url);
> >        this.hasRedirected = true;
> >      }
> >      protected boolean hasRedirected () {
> >        return this.hasRedirected;
> >      }
> >    }

This is now implemented, and works great.  In combination with
not cacheing the session object, redirects work as expected.

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

Reply via email to