Re: maxHTTPHeaderSize, and specific header lengths

2012-10-01 Thread Andrew Todd
On Mon, Oct 1, 2012 at 11:41 AM, Konstantin Kolinko wrote: > 2. If the protocol between HTTPD and Tomcat is AJP, > then the protocol itself has its own limitation, which is ~15 times > lesser than that amount. Thanks for anticipating my next question. Right now we're using mod_proxy with the HTTP

Re: maxHTTPHeaderSize, and specific header lengths

2012-10-01 Thread Konstantin Kolinko
2012/10/1 Andrew Todd : > On Sun, Sep 30, 2012 at 6:21 AM, Konstantin Kolinko > wrote: >> In Tomcat each request processor has a byte buffer and all the headers >> must fit into that buffer. > > Thanks so much for the detailed response. I have a couple more questions: > > 1) When a request is reje

Re: maxHTTPHeaderSize, and specific header lengths

2012-10-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andrew, On 10/1/12 10:33 AM, Andrew Todd wrote: > 1) When a request is rejected for being too large, is there any > logging that happens or can happen in Tomcat? Looks like you'll get an IllegalArgumentException. Easy enough to test yourself, eh? >

Re: maxHTTPHeaderSize, and specific header lengths

2012-10-01 Thread Andrew Todd
On Sun, Sep 30, 2012 at 6:21 AM, Konstantin Kolinko wrote: > In Tomcat each request processor has a byte buffer and all the headers > must fit into that buffer. Thanks so much for the detailed response. I have a couple more questions: 1) When a request is rejected for being too large, is there a

Re: maxHTTPHeaderSize, and specific header lengths

2012-09-30 Thread Konstantin Kolinko
2012/9/28 Andrew Todd : > I have a question about maxHttpHeaderSize [0]. In Apache httpd, there > are two different parameters that affect the maximum size of an HTTP > header, limitRequestFieldSize and limitRequestLine. [1] These > configuration values specify about 8 kilobytes per _line_ in the >

maxHTTPHeaderSize, and specific header lengths

2012-09-27 Thread Andrew Todd
I have a question about maxHttpHeaderSize [0]. In Apache httpd, there are two different parameters that affect the maximum size of an HTTP header, limitRequestFieldSize and limitRequestLine. [1] These configuration values specify about 8 kilobytes per _line_ in the incoming request. However, in Tom