Re: Action forward path

2005-12-12 Thread Paul Benedict
For developers, I suggest looking into this proposed enhancement. Instead of duplicating the path again in the forward, you can forward to actions. Please vote for this if you think it is valuable; perhaps it will make it into future versions of 1.3 or 1.4. http://issues.apache.org/bugzilla/show

Re: Action forward path

2005-12-12 Thread Laurie Harper
Andrzej Bengner wrote: [EMAIL PROTECTED] napisał(a): In that case, when action mapping looks like this (as you wrote in your mail before): then you have to do the following at the end of your action (after all work has been done): return mapping.findForward( "ok" ); I do this, but

Re: Action forward path

2005-12-12 Thread Andrzej Bengner
[EMAIL PROTECTED] napisał(a): In that case, when action mapping looks like this (as you wrote in your mail before): then you have to do the following at the end of your action (after all work has been done): return mapping.findForward( "ok" ); I do this, but struts still forwarding

RE: Action forward path

2005-12-12 Thread Peter . Zoche
rsprüngliche Nachricht- Von: Andrzej Bengner [mailto:[EMAIL PROTECTED] Gesendet: Montag, 12. Dezember 2005 10:37 An: Struts Users Mailing List Betreff: Re: Action forward path > The parameter attribute defines the target of your > forward action, that is your jsp. Thanks. And what if I want t

Re: Action forward path

2005-12-12 Thread Andrzej Bengner
The parameter attribute defines the target of your forward action, that is your jsp. Thanks. And what if I want to execute my action (do something) and forward to this path (/path/file.jsp or /path/MyAction.do)? Regards -- Andy --

RE: Action forward path

2005-12-12 Thread Peter . Zoche
Hi! If you only want your Action to forward to the jsp, and do nothing else, use a ForwardAction like this: The parameter attribute defines the target of your forward action, that is your jsp. Greetings Peter - Hello, I ha