> > > Is it possible to return a forward to another action 
> (e.g. to chain
> > > actions)?
> >
> > Yes.
> 
> Excellent!
> 
> However, I'm not able to find that class/method. Hint?

ActionForward forward = mapping.findForward( "your_forward_name" );
return forward;

Define the forward in your struts-config.xml just as you would
for a JSP page. The use it exactly the same for any resource,
whether JSP, HTML, PDF, another action, etc. etc.

                                -TPP

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to