You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by BugRat Mail System <to...@cortexity.com> on 2000/11/08 11:03:32 UTC

BugRat Report #357 has been filed.

Bug report #357 has just been filed.

You can view the report at the following URL:

   <http://znutar.cortexity.com:8888/BugRatViewer/ShowReport/357>

REPORT #357 Details.

Project: Tomcat
Category: Bug Report
SubCategory: New Bug Report
Class: support
State: received
Priority: medium
Severity: non-critical
Confidence: confidential
Environment: 
   Release: 3.1
   JVM Release: 1.3
   Operating System: nt
   OS Release: 4.0
   Platform: pentium 300

Synopsis: 
JSP forward In Jakarta

Description:
1.jsp
<form 1 action="1.jsp">
 <jsp:forward page="2.jsp" />
</form>

2.jsp
<form 1 action="2.jsp">
 <jsp:forward page="3.jsp" />
</form>

3.jsp
<form 1 action="3.jsp">
 <jsp:forward page="1.jsp" />
</form>

I tried to close all response after the forward using 
response.getWriter().close() and response.getOutputStream().close()
but always get this
java.lang.IllegalStateException: Cannot forward as OutputStream or Writer 
has already been obtained
Have run out of ideas. 
Is this a bug?
Please advice.