RE: Is there such a thing as flash in S2?

2008-06-05 Thread Guillaume Bilodeau
works (until the timeout occurs). Thanks again for making your code available! Ken http://www.nabble.com/file/p17659710/JavaDocAdditions.txt JavaDocAdditions.txt -- View this message in context: http://www.nabble.com/Is-there-such-a-thing-as-flash-in-S2--tp16697840p17670259.html Sent

RE: Is there such a thing as flash in S2?

2008-06-04 Thread kenk
Thanks GB. I'll try to respond back to this thread by friday or so. -- K :working: -- View this message in context: http://www.nabble.com/Is-there-such-a-thing-as-flash-in-S2--tp16697840p17647498.html Sent from the Struts - User mailing list archive at Nabble.com

RE: Is there such a thing as flash in S2?

2008-06-04 Thread kenk
occurs). Thanks again for making your code available! Ken http://www.nabble.com/file/p17659710/JavaDocAdditions.txt JavaDocAdditions.txt -- View this message in context: http://www.nabble.com/Is-there-such-a-thing-as-flash-in-S2--tp16697840p17659710.html Sent from the Struts - User mailing list

RE: Is there such a thing as flash in S2?

2008-04-28 Thread KonTiki
via HTTP) for Struts, working very similar to the SSL plugin. -- View this message in context: http://www.nabble.com/Is-there-such-a-thing-as-flash-in-S2--tp16697840p16935302.html Sent from the Struts - User mailing list archive at Nabble.com

RE: Is there such a thing as flash in S2?

2008-04-24 Thread Guillaume Bilodeau
-as-flash-in-S2--tp16697840p16866433.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is there such a thing as flash in S2?

2008-04-17 Thread Guillaume Bilodeau
: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Is-there-such-a-thing-as-flash-in-S2--tp16697840p16744246.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Is there such a thing as flash in S2?

2008-04-17 Thread Ian Roughley
Your right. The flash interceptor is more for the benefit of the next JSP page (i.e. redirect after post pattern) and not for accessing data in the current action. For this scenario you can use the chaining interceptor/result type - match setters on the current action with getters from the

RE: Is there such a thing as flash in S2?

2008-04-17 Thread Brad A Cupit
What would be great is if an interceptor would inject all properties that are shared by the previous and the current action (by name? by type?) in the current action, in a similar fashion to HTTP parameter injection. If you use an ActionChainResult it will automatically do this, but action

RE: Is there such a thing as flash in S2?

2008-04-17 Thread Guillaume Bilodeau
University - UIS - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Is-there-such-a-thing-as-flash-in-S2

RE: Is there such a thing as flash in S2?

2008-04-17 Thread Brad A Cupit
This hypothetical flash result could list the properties that should survive the redirect snip/ I'll investigate writing such a result / interceptor pair. Wouldn't that be the same as the ServletActionRedirectResult, where param values can be ognl expressions? (assuming a version of struts

Is there such a thing as flash in S2?

2008-04-15 Thread Alex Shneyderman
Flash scope is fairly common nowdays (for displaying messages) I wonder if S2 2.011, has anything similar? thanks, Alex. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is there such a thing as flash in S2?

2008-04-15 Thread Don Brown
Oh, didn't see the 2.0.11.1 requirement...not sure if the message store interceptor code is in that branch, but the scope plugin should work just fine. Don On Tue, Apr 15, 2008 at 7:19 PM, Don Brown [EMAIL PROTECTED] wrote: There is the Struts 2 Scope Plugin [1], which does flash scope and a

Re: Is there such a thing as flash in S2?

2008-04-15 Thread Don Brown
There is the Struts 2 Scope Plugin [1], which does flash scope and a lot more. Also, the message store interceptor, available in core out-of-the-box, will persist action and error messages across a redirect in a flash scope, which is very handy for registering validation errors on a POST but

Re: Is there such a thing as flash in S2?

2008-04-15 Thread Ian Roughley
There is also a flash result type / interceptor in webwork - very easy (2 min) to convert to s2. /Ian Don Brown wrote: There is the Struts 2 Scope Plugin [1], which does flash scope and a lot more. Also, the message store interceptor, available in core out-of-the-box, will persist action and

RE: Is there such a thing as flash in S2?

2008-04-15 Thread Brad A Cupit
: Re: Is there such a thing as flash in S2? There is also a flash result type / interceptor in webwork - very easy (2 min) to convert to s2. /Ian Don Brown wrote: There is the Struts 2 Scope Plugin [1], which does flash scope and a lot more. Also, the message store interceptor, available in core