Re: Tomcat 5 Issue (not 5.0.16 specific!)

2003-12-03 Thread Dan Johnsson
Jess Holle wrote: Tim Funk wrote: Section 5.5 of the spec: When a response is closed, the container must immediately flush all remaining content in the response buffer to the client. The following events indicate that the servlet has satisfied the request and that the response object is to

Re: Tomcat 5 Issue (not 5.0.16 specific!)

2003-12-03 Thread Jess Holle
Dan Johnsson wrote: Jess Holle wrote: Tim Funk wrote: Section 5.5 of the spec: When a response is closed, the container must immediately flush all remaining content in the response buffer to the client. The following events indicate that the servlet has satisfied the request and that the

Tomcat 5 Issue (not 5.0.16 specific!)

2003-12-02 Thread Jess Holle
First, I'd like to say that we should *not* consider the following issue as one to prevent a stable label for Tomcat 5.0.16. That said, I've noted that if you do: response.setContentLength( 0 ); All subsequent setHeader(), etc, calls are ignored -- Tomcat considers the response commited.

Re: Tomcat 5 Issue (not 5.0.16 specific!)

2003-12-02 Thread Tim Funk
Section 5.5 of the spec: When a response is closed, the container must immediately flush all remaining content in the response buffer to the client. The following events indicate that the servlet has satisfied the request and that the response object is to be closed: The termination of the

Re: Tomcat 5 Issue (not 5.0.16 specific!)

2003-12-02 Thread Jess Holle
Tim Funk wrote: Section 5.5 of the spec: When a response is closed, the container must immediately flush all remaining content in the response buffer to the client. The following events indicate that the servlet has satisfied the request and that the response object is to be closed: The