> > 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]
- Re: Why WebApp programming is harder than necessary with ... giacomo
- Re: Why WebApp programming is harder than necessary ... Davanum Srinivas
- Re: Why WebApp programming is harder than necess... Berin Loritsch
- Re: Why WebApp programming is harder than necess... giacomo
- Re: Why WebApp programming is harder than ne... Berin Loritsch
- Re: Why WebApp programming is harder tha... giacomo
- AW: Why WebApp programming is harde... Carsten Ziegeler
- Re: AW: Why WebApp programming ... Giacomo Pati
- AW: Why WebApp programming is h... Carsten Ziegeler
- Re: Why WebApp programming is h... Berin Loritsch
- Re: Why WebApp programming is harder than necessary with ... Martin Man
- Re: Why WebApp programming is harder than necessary with ... Pae Choi