[EMAIL PROTECTED] napisaƂ(a):
In that case, when action mapping looks like this
(as you wrote in your mail before):

<action path="/MyAction"
      input="/path/file.jsp" ...>
      <forward name="ok" path="/path/file.jsp"/>
</action>

then you have to do the following at the end of your
action (after all work has been done):

return mapping.findForward( "ok" );

I do this, but struts still forwarding me to "http://localhost/context/MyAction.do"; - not "http://localhost/context/path/MyAction.do";. And I have defined:

<forward name="ok" path="/path/file.jsp"/>

and in my struts action I return mapping.findForward("ok").
What I do wrong?

Regards

--
Andy

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to