How can I forward to another action with userspecific data

2002-04-17 Thread Dirk Storck
Hi, I would like to do the following I have a ActionA wich has to forward to a action ActionB but has to submit some data from ActionA ActionA calls-/actionB.do?data1=1data2=2 within the action ActionA. Is that somehow possible ? Thanks !! -- To unsubscribe, e-mail:

Re: How can I forward to another action with userspecific data

2002-04-17 Thread Victor Hadianto
Yes, Try: String next = mapping.findForward(ActionB).getPath(); next = next + ?data=1data=2; // don't pass the true parameter if not redirection. return new ActionForward(next, true); -- Victor On Wed, 17 Apr 2002 18:09, you wrote: Hi, I would like to do the following I have a