I'm slightly confused by your question, but if I take what you mean correctly, then :
In your struts-config.xml file you have the lines :
<form-bean name="startForm"
type="uk.co.acme.cops.struts.form.StartForm"/>
and also :
<action path="/start"
type="uk.co.acme.cops.struts.action.StartAction"
name="startForm"
input="/cas/pages/start.jsp"
>
<forward name="orderEntry" path="/orderEntry.do" />
<forward name="Find Organisation" path="/findOrganisation.do?action=Reset" />
<forward name="Find Project" path="/findProject.do" />
<forward name="Find Contact" path="/findContact.do?action=Reset" />
<forward name="goToSomePage" path="/someHtmlPage.html />
</action>
So in your Action class, to forward to a page you would do a
Code:
return mapping.findForward("goToSomePage");
Is this what you mean ?