Re: Request Body Greater Than 8192

2008-07-14 Thread Troy Davidson
Markus, That was the problem. I switched how I get the request body and it works. Thanks for pointing me in the right direction. Troy Davidson Senior Programmer Maverik, Inc. 880 W. Center St. NSL, Utah 84054 801-335-3887 Office 801-663-1460 Cell Thank you for allowing us to service

Request Body Greater Than 8192

2008-07-11 Thread Troy Davidson
I have an interesting problem and can't seem to find the answer anywhere. We have Tomcat 5.5.26 running on a SuSE Linux server. Tomcat is doing SOAP requests. I get the body of the request with the following code: BufferedReader reader = req.getReader(); while ((line = reader.readLine()) !=

Re: Request Body Greater Than 8192

2008-07-11 Thread Markus Schönhaber
Troy Davidson schrieb: Sometimes we get a SOAP request in that has a body greater than 8192 bytes. But, no matter what I try, message will always have a length of 8192. It won't read past the 8192 barrier. Now, I know that the default size of the BufferedReader is 8192. I've changed this