I'm new (2 days) to Struts and cannot find any good documentation nor
tutorials to satisfactorily explain the API in a practical sense.
Anyway, I need to pass control from one class to another in a web app
something like:
public String getNextPage() throws Exception {
Command nextCommand = new ListEquipmentAction();
nextCommand.setAttributes( this);
nextCommand.execute();
return nextCommand.getNextPage();
}
How do I go about doing this in the form:
return( mapping.findForward( "success"));
?
Thanks,
Mark
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>