Re: forward and set url parameter

2004-08-24 Thread Stefan Groschupf
tuation, so with the redirect stuff you'll be done. Saludos. Guillermo. -Mensaje original- De: Erik Weber [mailto:[EMAIL PROTECTED] Enviado el: Martes, 24 de Agosto de 2004 05:57 p.m. Para: Struts Users Mailing List Asunto: Re: forward and set url parameter public ActionForward exe

RE: forward and set url parameter

2004-08-24 Thread Guillermo Meyer
one. Saludos. Guillermo. -Mensaje original- De: Erik Weber [mailto:[EMAIL PROTECTED] Enviado el: Martes, 24 de Agosto de 2004 05:57 p.m. Para: Struts Users Mailing List Asunto: Re: forward and set url parameter public ActionForward executeActionMapping mapping, ActionForm form, H

Re: forward and set url parameter

2004-08-24 Thread Erik Weber
public ActionForward executeActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { ActionForward forward = mapping.findForward("success"); String path = forward.getPath(); path += "?foo=bar"; return new ActionForward(path); } But in th

forward and set url parameter

2004-08-24 Thread Stefan Groschupf
Hi, I wish to forward to a action that require a url parameter. request.setAttribute does not set a urlParameter in the style showBla.do?pk=2323; How to set such a parameter, since request.getParameterMap().put() has no effect? Thanks for any hints. Stefan --