My application is using struts 1.1. I'm trying to group URL forwards, using wildcards.
For example, if the action is like this:
action path="/edit/product" type="classname"
forward
name="success"
path=".myapp.main"
action
Replacing the first line above with
action path="/edit/*" type="classname"
doesn't work. Any other step is required, to forward any URL beginning with /edit/ to myapp.main?
EDIT: removed the brackets, as the code wasn't showing up.