Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-11-02 Thread Pid *
AM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters String keyValuePair = null; String[] arrKeyValue = null; BufferedReader in = request.getReader(); while ((keyValuePair = in.readLine()) != null) { arrKeyValue = keyValuePair.split

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-11-01 Thread Konstantin Kolinko
2011/10/31 Anantaneni Harish anantaneni.har...@vertexsoft.com: String keyValuePair = null; String[] arrKeyValue = null; BufferedReader in = request.getReader(); while ((keyValuePair = in.readLine()) != null) { arrKeyValue = keyValuePair.split(=); Above code reads incomplete data(read only

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-11-01 Thread Anantaneni Harish
List Subject: Re: cannot read complete HTTP request body. It reads only 8192 characters 2011/10/31 Anantaneni Harish anantaneni.har...@vertexsoft.com: String keyValuePair = null; String[] arrKeyValue = null; BufferedReader in = request.getReader(); while ((keyValuePair = in.readLine()) != null

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-31 Thread Anantaneni Harish
Any thoughts about this? Thanks and Regards, Harish -Original Message- From: Anantaneni Harish Sent: Monday, October 31, 2011 11:23 AM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters String keyValuePair = null; String

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-31 Thread Igor Cicimov
-Original Message- From: Anantaneni Harish Sent: Monday, October 31, 2011 11:23 AM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters String keyValuePair = null; String[] arrKeyValue = null; BufferedReader in = request.getReader(); while

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-31 Thread Anantaneni Harish
, Harish -Original Message- From: Igor Cicimov [mailto:icici...@gmail.com] Sent: Tuesday, November 01, 2011 10:47 AM To: Tomcat Users List Subject: Re: cannot read complete HTTP request body. It reads only 8192 characters You never said what is the difference between your environment

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-31 Thread Igor Cicimov
thoughts about this? Thanks and Regards, Harish -Original Message- From: Anantaneni Harish Sent: Monday, October 31, 2011 11:23 AM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters String keyValuePair = null

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-31 Thread Anantaneni Harish
Dont know :(, must be different. Thanks and Regards, Harish -Original Message- From: Igor Cicimov [mailto:icici...@gmail.com] Sent: Tuesday, November 01, 2011 10:57 AM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters And same

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-31 Thread Igor Cicimov
. Thanks and Regards, Harish -Original Message- From: Igor Cicimov [mailto:icici...@gmail.com] Sent: Tuesday, November 01, 2011 10:57 AM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters And same kernel network settings? On Nov 1

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-31 Thread Tim Watts
and Regards, Harish -Original Message- From: Anantaneni Harish Sent: Monday, October 31, 2011 11:23 AM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters String keyValuePair = null; String[] arrKeyValue = null

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-30 Thread Anantaneni Harish
, October 28, 2011 9:08 PM To: Tomcat Users List Subject: Re: cannot read complete HTTP request body. It reads only 8192 characters Konstantin Kolinko wrote: 2011/10/27 Christopher Schultz ch...@christopherschultz.net: On 10/27/2011 4:58 AM, Anantaneni Harish wrote: Thanks for the directions

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-28 Thread Konstantin Kolinko
2011/10/27 Christopher Schultz ch...@christopherschultz.net: On 10/27/2011 4:58 AM, Anantaneni Harish wrote: Thanks for the directions the Rainer. Actually the issue is just solved. We have changed from BufferedReader in = request.getReader(); to BufferedReader in = new BufferedReader(new

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-28 Thread André Warnier
Konstantin Kolinko wrote: 2011/10/27 Christopher Schultz ch...@christopherschultz.net: On 10/27/2011 4:58 AM, Anantaneni Harish wrote: Thanks for the directions the Rainer. Actually the issue is just solved. We have changed from BufferedReader in = request.getReader(); to BufferedReader in

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-27 Thread Rainer Jung
On 27.10.2011 06:02, Anantaneni Harish wrote: -Original Message- From: Anantaneni Harish Sent: Wednesday, October 26, 2011 3:01 PM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters Thanks for your response. The issue

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-27 Thread Anantaneni Harish
: Thursday, October 27, 2011 5:52 PM To: users@tomcat.apache.org Subject: Re: cannot read complete HTTP request body. It reads only 8192 characters On 27.10.2011 06:02, Anantaneni Harish wrote: -Original Message- From: Anantaneni Harish Sent: Wednesday, October 26, 2011 3:01 PM

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Harish, On 10/27/2011 4:58 AM, Anantaneni Harish wrote: Thanks for the directions the Rainer. Actually the issue is just solved. We have changed from BufferedReader in = request.getReader(); to BufferedReader in = new BufferedReader(new

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-27 Thread Anantaneni Harish
Hi Chris, Could you please let me know, the info you required? Thanks and Regards, Harish -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Friday, October 28, 2011 12:39 AM To: Tomcat Users List Subject: Re: cannot read complete HTTP request body

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-26 Thread Anantaneni Harish
List Subject: Re: cannot read complete HTTP request body. It reads only 8192 characters On 26 Oct 2011, at 06:31, Anantaneni Harish anantaneni.har...@vertexsoft.com wrote: We have an environment using HTTP connector, customer environment using AJP connector. In HTTP environment this issue

RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-26 Thread Anantaneni Harish
Please help on this. Thanks and Regards, Harish -Original Message- From: Anantaneni Harish Sent: Wednesday, October 26, 2011 3:01 PM To: Tomcat Users List Subject: RE: cannot read complete HTTP request body. It reads only 8192 characters Thanks for your response. The issue

cannot read complete HTTP request body. It reads only 8192 characters

2011-10-25 Thread Anantaneni Harish
We have an environment using HTTP connector, customer environment using AJP connector. In HTTP environment this issue is not occured. but in the AJP environment cannot read complete HTTP request body. It reads only 8192 characters Can some help me, if there are any settings to be changed

Re: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-25 Thread Pid *
On 26 Oct 2011, at 06:31, Anantaneni Harish anantaneni.har...@vertexsoft.com wrote: We have an environment using HTTP connector, customer environment using AJP connector. In HTTP environment this issue is not occured. but in the AJP environment cannot read complete HTTP request body