DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18080>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18080

RequestDispatcher forward problem in servlets

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From [EMAIL PROTECTED]  2003-03-17 23:32 -------
After a forward is done, control still continues in the method. This a
restriction of the Java language.

The Servlet spec says this:
"Before the forward method of the RequestDispatcher interface returns, the
response content must be sent and committed, and closed by the servlet container."

That means after a forward() is performed the response is closed and you may not
be able to send any more information to the client. This allows a programmer to
perform any auditing or cleanup work.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to