Oops, my error...
The flow is as follows: from file1 to this:
String opn = request.getParameter("opn");
String pcs = request.getParameter("pcs");
String vds = request.getParameter("vds");
boolean no_1 = request.getParameter("xsql_file").equals("Section
Selection");
boolean no_2 = request.getParameter("xsql_file").equals("PCS Selection");
boolean no_3 = request.getParameter("xsql_file").equals("VDS Selection");
boolean no_4 = request.getParameter("xsql_file").equals("Pipe Element
Selection");
if (no_1) { %><jsp:forward page="advanced_schema_sections.jsp?opn=<%= opn
%>"/><% }
if (no_2) { %><jsp:forward page="advanced_schema_pcs.jsp?opn=<%= opn
%>&pcs=<%= pcs %>&name=PCS"/><% }
if (no_3) { %><jsp:forward page="advanced_schema_vds.jsp?opn=<%= opn
%>&vds=<%= vds %>&name=VDS"/><% }
if (no_4) { %><jsp:forward page="advanced_schema_pipe.xsql?opn=<%= opn
%>"/><% } %>
where I try to open file 2 in my previous mail.
It seems as if there is something wrong with my jsp:forward. Any clue?
Will search the net...
Thanks
Terje K.
-----Original Message-----
From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]]
Sent: 29. mai 2001 11:53
To: '[EMAIL PROTECTED]'
Subject: AW: newbie problem: javax.servlet.ServletException at
org.apache.jasp er.runtime.PageContextImpl.handlePageException
To get an idea what happens, you should have a look at line 72 of the
generated java file
_0002flsp_00032_00030_00030_0002fadvanced_0005fredirect_0002ejspadvanced_000
5fredirect_jsp_0.java
to find the place in advanced_redirect.jsp which causes this problem.
Try to reduce your jsp's to the bare minimum that reproduces this error.
> -----Urspr�ngliche Nachricht-----
> Von: Terje Kristensen [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 29. Mai 2001 11:18
> An: '[EMAIL PROTECTED]'
> Betreff: newbie problem: javax.servlet.ServletException at
> org.apache.jasp er.runtime.PageContextImpl.handlePageException
<snip/>
Root cause:
java.lang.IllegalArgumentException
at javax.servlet.http.HttpUtils.parseName(HttpUtils.java:285)
at javax.servlet.http.HttpUtils.parseQueryString(HttpUtils.java:154)
at
org.apache.tomcat.facade.RequestDispatcherImpl.addQueryString(RequestDispatc
herImpl.java:491)
at
org.apache.tomcat.facade.RequestDispatcherImpl.forward(RequestDispatcherImpl
.java:176)
at
org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:421)
at
lsp_00032_00030_00030._0002flsp_00032_00030_00030_0002fadvanced_0005fredirec
t_0002ejspadvanced_0005fredirect_jsp_0._jspService(_0002flsp_00032_00030_000
30_0002fadvanced_0005fredirect_0002ejspadvanced_0005fredirect_jsp_0.java:72)
<snip/>