Re: Struts 2.x: Redirecting "input" result

2007-12-18 Thread Alberto A. Flores
Thanks to all for your answers. I completely missed that thread (Adam). I'll try it today. Alberto Adam Hardy wrote: Alberto A. Flores on 17/12/07 21:06, wrote: Is it possible to redirect the "input" result (after validation has finished) of an action mapping properly? I currently have some

Re: Struts 2.x: Redirecting "input" result

2007-12-17 Thread Adam Hardy
Alberto A. Flores on 17/12/07 21:06, wrote: Is it possible to redirect the "input" result (after validation has finished) of an action mapping properly? I currently have something like: showList.tile bar success.tile The current behavior I'm experiencing is one where the re

RE: Struts 2.x: Redirecting "input" result

2007-12-17 Thread Hodgins, Grant
I believe this is expected behavior. The "redirect-action" / "redirectAction" type will lose the context of the initial request since the redirect literally spawns a new request. I've used type="chain" to remedy this issue. Perhaps the experts would suggest otherwise. Cheers, Grant -Origin