Going back to 

http://www.mail-archive.com/struts-dev@jakarta.apache.org/msg01351.html

"It would be nice if there was some Struts mechanism so that I could
tell
Struts "please pass this form bean directly to the target action instead
of
resetting one and populating it from request parameters". Then my target
action wouldn't need to be aware that it was the target of the chain, or
that the form bean was hand-crafted."

How about if we made a few more things public so you could do something
like 

ActionMapping chainMapping =
servlet.processMapping("/do/another/Action",request);
Action chainAction = servlet.processActionCreate(chainMapping,request);
ActionForward chainForward = servlet.processActionPerform(
        chainAction,chainMapping,form,request,response);

Or added an all-in-one method that did this for you, and just returned a
forward 

ActionForward chainForward = servlet.invokeAction(
        "/do/another/Action",form,request,response);


(Quick, someone talk him down off the ledge.)


-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel +1 716 737-3463
-- http://www.husted.com/struts/

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

Reply via email to