Re: Avoid chunk response

2006-08-24 Thread Tim Funk
IIRC - There was a discussion on this a while bakc (in tomcat user, dev, or bugzilla). But I believe the resolution was - there is no configurable way to do so. If you want no chunking at all - then at a minimum - you need to set the content length explicitly. (response.setContentLength()) - b

Avoid chunk response

2006-08-24 Thread COURTAULT Francois
Hello, I have made some tests and it seems that if the response to a request exceeds a size limit, the response is chunked. Is there a way to avoid that ? or is there a way to set this limit in a configuration file ? Regards.