Yes, RedirectTracker uses the server-side session. The combination of no-server-side-state, redirects and t:saveState is not possible.
A redirect is by definition just a GET command. And there is no way to encode the state of anything in the query params of a GET command; they are just too limited. So state cannot be passed across a redirect - except by storing it in the session. Regards, Simon ---- "Sertic Mirko schrieb: > Thanks a lot. > > Does the RedirectTracker track it's state in the HttpSession > object? What do I have to do if I don't want to use any > HttpSession in combination with ClientState saving due to > load balancer issues? > > Regards > Mirko > > -----Ursprüngliche Nachricht----- > Von: David Delbecq [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 21. Januar 2008 10:34 > An: MyFaces Discussion > Betreff: Re: t:saveState and redirect > > Try this: > http://wiki.apache.org/myfaces/RedirectTracker > > Sertic Mirko, Bedag a écrit : > > > > Hi all! > > > > I've got a question regarding t:saveState and request scope session beans. > > > > Is it possible to use t:saveState in combination with a <redirect/> > > navigation rule? > > > > Are there any things I have to take care of? > > > > Thanks a lot > > > > Mirko > > >

