DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=31702>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=31702

Feature Request: action chaining tag

           Summary: Feature Request: action chaining tag
           Product: Struts
           Version: 1.2.4
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Enhancement
          Priority: Other
         Component: Controller
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


It would be nice to have a tag in struts-config.xml to implement action 
chaining.
No more something like that:
   
   <action    path="/action01"
               type="com.company.action01"
               scope="request"
               name="form01"
               input="/advancedPortfolioDetail.jsp">
        <forward name="Success" path="/action02.do"/>
   </action> 
   
   <action  path="/action02"
               type="com.company.action02"
               scope="request"
               name="form01">
        <forward name="Success" path="/resultpage.jsp"/>
   </action> 
   
 
... but something more explicative like that:
   
   <chain path="/chainedaction01" 
        scope="request" 
        name="form01" >
        <action  type="com.company.action01"/>
        <action  type="com.company.action02"/>
        <forward name="Success" path="/resultpage.jsp"/>
   </chain>
   
What do you think? Just my 2 cents ...
Thanks

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

Reply via email to