Hi. Assume I have the following in my struts-config.xml: ... <action-mappings> <action path="/FirstPage" name="FirstForm" type="com.mypkg.FirstAction" ...> <forward name="forward to first page" .../> </action> <action path="/SecondPage name="SecondForm" type="com.mypkg.SecondAction" ...> <forward name="forward to second page" .../> </action> </action-mappings>
Assuming I'm currently inside of com.mypkg.FirstAction.execute() method. How can I obtain ActionConfig from the "forward to second page" forward definition? What I mean is that I know the forward name for the SecondPage action mapping. I need to get to the path "/SecondPage". Thanks. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]