Re: The Maximum limit of an http header size

2011-03-18 Thread Ronald Klop
Ai. Touche. Op vrijdag, 18 maart 2011 11:43 schreef Mark Thomas : On 18/03/2011 09:51, Ronald Klop wrote: > It is limited by the amount of memory in your JVM. Interesting guess but wrong. The maximum size for the http headers for any one request is Integer.MAX_VALUE, 2^31-1. I

Re: The Maximum limit of an http header size

2011-03-18 Thread Mark Thomas
On 18/03/2011 09:51, Ronald Klop wrote: > It is limited by the amount of memory in your JVM. Interesting guess but wrong. The maximum size for the http headers for any one request is Integer.MAX_VALUE, 2^31-1. I would remind folks that since this is open source you can just look at the source co

Re: The Maximum limit of an http header size

2011-03-18 Thread Ronald Klop
It is limited by the amount of memory in your JVM. Ronald. Op vrijdag, 18 maart 2011 05:26 schreef rajini maski : Any idea about what might be the maximum limit of a maxHttpHeadSize. The maximum size of the request and response HTTP header, specified in bytes. If not specified,

The Maximum limit of an http header size

2011-03-17 Thread rajini maski
Any idea about what might be the maximum limit of a maxHttpHeadSize. The maximum size of the request and response HTTP header, specified in bytes. If not specified, this attribute is set to 4096 (4 KB). What is the maximum limit? If you try to submit too long a GET query to Solr, then To