I m having trouble calling a method in one Struts action from a method in another Struts Action (I ve been told that this is possible).
I m working with two Struts DynaValidatorForms - one is used to create an entry, the other is used purely for viewing the action (plus editing, deleting etc).
I have two seperate Struts Action files: CreateAction.java (which has the create() method) and ViewAndEditAction.java (which contains the view() and edit() methods).
What I would like to do is to invoke the view() method in the latter action after the create() method in the former action has completed.
I ve looked into Action Chaining but haven t been able to find a solution to my problem.