Another way to do it is saving the complete URI+parameters in a String
variable and put it as a tag: <@jsp:forward page="<%=url_plus_paramters%>">

parameters="?"+parameters... to get http://yourdomain.com/some.jsp?...

Guido.

P.D: I already tested but I don't remember if is <@jsp:forward or
<jsp:forward ... I guess that for that is the first...

----- Original Message -----
From: "Terje Kristensen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 30, 2001 2:53 AM
Subject: RE: newbie problem: javax.servlet.ServletException at org.apache.
jasp er.runtime.PageContextImpl.handlePageException


> Thanks, that did it.... :-)
>
> Terje K.
>
> -----Original Message-----
> From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]]
> Sent: 29. mai 2001 13:16
> To: '[EMAIL PROTECTED]'
> Subject: AW: newbie problem: javax.servlet.ServletException at
> org.apache. jasp er.runtime.PageContextImpl.handlePageException
>
>
> As I understand the spec, this is not valid:
>
> <jsp:forward page="some.jsp?arg1=value1" />
>
> (See 2.13.5 and 2.5.2)
>
> Instead you can use:
>
> <jsp:forward page="some.jsp">
>  <jsp:param name="arg1" value="value1" />
> </jsp:forward>
>
> This notation is a bit 'noisy' but it should work.
>
> > -----Ursprüngliche Nachricht-----
> > Von: Terje Kristensen [mailto:[EMAIL PROTECTED]]
> > Gesendet: Dienstag, 29. Mai 2001 12:29
> > An: '[EMAIL PROTECTED]'
> > Betreff: RE: newbie problem: javax.servlet.ServletException at
> <snip/>
>

Reply via email to