Another chunking question...turning "allowChunking" off seems to not only turn off tomcat's chunking but it also makes it so that if I want to do chunking myself (ie. set the header and chunk the data manually) tomcat seems to remove my Transfer-Encoding header. Shouldn't it just ignore it - and allow me to chunk manually? -Dug
"Craig R. McClanahan" <[EMAIL PROTECTED]>@us.ibm.com> on 10/29/2001 12:49:42 PM Please respond to "Tomcat Users List" <[EMAIL PROTECTED]> Sent by: <[EMAIL PROTECTED]> To: Tomcat Users List <[EMAIL PROTECTED]> cc: Subject: Re: chunking Chunking is a standard feature of the HTTP/1.1 connector that is used by default in Tomcat 4. To turn it off, you can set the "allowChunking" attribute on the <Connector> element to false. For more info, see the Server Configuration docs included with Tomcat, or look online at: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/http11.html Craig On Mon, 29 Oct 2001, Doug Davis wrote: > Date: Mon, 29 Oct 2001 10:13:45 -0500 > From: Doug Davis <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: chunking > > Forgive me if this has been asked before, but... > I just started using tomcat 4.0.1 (from 3.1) and I noticed > a change in http chunking. In my serlvet I set the > http header "transfer-encoding" to "chunked" and > then I would have to chunk the data myself ( like other > web servers I'm using include web sphere). Now however, > in 4.0.1 tomcat seems to be chunking the data for me, so > it gets chunked twice. My question is, should it be doing > that? And is there anyway to turn it off. > thanks, > -Dug > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
