I am working on a Struts application.Now I have a strange situation.The current application has a config file something like this
<action path="/validate" type="test1Action" scope="request" validate="false">
<forward name="cat1" path="path1/value1"/>
<forward name="cat2" path="path1/value2"/>
<forward name="cat3" path="path1/value3"/>
<forward name="failure" path="path1"/>
<forward name="failed" path="emptysession"/>
</action>
Now the issue is if I add a new Action class test2Action and I have to change the type to test2Action and in test2Action I have only three return variables namely
cat1,failure,failed. Now cat1 should call test1Action. What I am trying to do is insert an action class inbetween a JSP and Action class.Anyone can help me out?