You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Choo Yew Beng <ye...@cnpr.nus.edu.sg> on 2000/11/08 10:57:13 UTC

Bug Report ID : 357

Hi Gurus,
The bug report ID : 357 is supposed to be as followed:
But the tag are all removed. Can someone please advice if and
when is convinent?
Thx in advance
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.