Thanks, that did it.... :-)
Terje K.
-----Original Message-----
From: Ralph Einfeldt [mailto:ralph.einfeldt@uptime-isc.de]
Sent: 29. mai 2001 13:16
To: 'tomcat-user@jakarta.apache.org'
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:Terje.Kristensen@igroup.no]
> Gesendet: Dienstag, 29. Mai 2001 12:29
> An: 'tomcat-user@jakarta.apache.org'
> Betreff: RE: newbie problem: javax.servlet.ServletException at
<snip/>
|