Hi all, I have a configuration like this one below:
<action path="/SubmitDrawingUpload" type="SubmitDrawingUploadAction"
name="DrawingUploadForm">
<forward name="showParentForm" path="/DrawingUpdate.do"/>
</action>
now inside the SubmitDrawingUploadAction class usually i just need the
following statement to forward to DrawingUpdate.do :
return mapping.findForwards("showParentForm");
the question is, what if I want to add extra parameter?? so it would be
forwarded into DrawingUpdate.do?drawing_id=24
how can I add that 'drawing_id' parameter from inside
SubmitDrawingUploadAction class?
Thank you all