Re: t:saveState how-to?

2006-04-29 Thread Mike Kienenberger
On 4/28/06, John Ruffin <[EMAIL PROTECTED]> wrote: Thanks JuanCarlos. I've successfully savedState on a bean from 5 pages ago using a Ok. I see what you're trying to do now. I don't think you can inject a persisted request bean using managed beans You're probably going to need to explicitl

Re: t:saveState how-to?

2006-04-28 Thread John Ruffin
Thanks JuanCarlos. I've successfully savedState on a bean from 5 pages ago using a http://www.nabble.com/t%3AsaveState-how-to--t1521818.html#a4150715 Sent from the MyFaces - Users forum at Nabble.com.

Re: t:saveState how-to?

2006-04-28 Thread Juan C. Galeano H.
Hi John! I think you will get the same behavior if you get rid the ids, I mean, what is important in saveState is the value attribute. The way I use saveState, for instance to preserve myBean state, from page1.jsp to page2.jsp is as follows: in page1.jsp and in page2.jsp where myBean i

Re: t:saveState how-to?

2006-04-28 Thread John Ruffin
Thanks Mike. I think Serialization is implemented correctly. I had some logging statements in my form beans and t:saveState wouldn't work "inside" until I removed them. All form beans implement Serialization. >From form1.jsp with a t:saveState to form2.jsp with a t:saveState(same id) - I can

Re: t:saveState how-to?

2006-04-28 Thread Mike Kienenberger
On 4/27/06, John Ruffin <[EMAIL PROTECTED]> wrote: I want users to flow through say 2 screens then I want to save their submitted data. I use t:saveState to keep the data around. I added: to the first form and in the second form. Both beans implement Serializable. is outside . javax.faces.

Re: t:saveState how-to?

2006-04-28 Thread John Ruffin
Sorry folks - just thought I'd ping the list again. This is a bit pressing for me. Any feedback is appreicated. -- View this message in context: http://www.nabble.com/t%3AsaveState-how-to--t1521818.html#a4142396 Sent from the MyFaces - Users forum at Nabble.com.

Re: t:saveState how-to?

2006-04-28 Thread John Ruffin
I edited the original post in Nabble, but it mentioned the changes would be pushed to the list. Hence the reply. Fun stuff at crazy hours! -- View this message in context: http://www.nabble.com/t%3AsaveState-how-to--t1521818.html#a4136167 Sent from the MyFaces - Users forum at Nabble.com.

t:saveState how-to?

2006-04-27 Thread John Ruffin
I want users to flow through say 2 screens then I want to save their submitted data. I use t:saveState to keep the data around. I added: to the first form and in the second form. Both beans implement Serializable. is outside . javax.faces.STATE_SAVING_METHOD is set to client. This works o