reading POST body fails on 6.0.16, works on 6.0.14

2008-06-26 Thread John Cartwright
Hello All, I have a very simple doPost method that reads the body of a POST request. Seems to work fine on 6.0.14 but consistently fails to read the body correctly in 6.0.16. Can someone help me with what's wrong here? Thanks! -- john protected void doPost(HttpServletRequest request,

RE: reading POST body fails on 6.0.16, works on 6.0.14

2008-06-26 Thread Caldarale, Charles R
From: John Cartwright [mailto:[EMAIL PROTECTED] Subject: reading POST body fails on 6.0.16, works on 6.0.14 Seems to work fine on 6.0.14 but consistently fails to read the body correctly in 6.0.16. So what does it do? You've got all those print statements in your code - what do they show

Re: reading POST body fails on 6.0.16, works on 6.0.14

2008-06-26 Thread Filip Hanik - Dev Lists
yes, its a bug, and will be fixed in 6.0.17, I think its bug 44494 https://issues.apache.org/bugzilla/show_bug.cgi?id=44494 Filip John Cartwright wrote: Hello All, I have a very simple doPost method that reads the body of a POST request. Seems to work fine on 6.0.14 but consistently fails

Re: reading POST body fails on 6.0.16, works on 6.0.14

2008-06-26 Thread Mark Thomas
John Cartwright wrote: Hello All, I have a very simple doPost method that reads the body of a POST request. Seems to work fine on 6.0.14 but consistently fails to read the body correctly in 6.0.16. Can someone help me with what's wrong here?