DO NOT REPLY [Bug 38346] InputBuffer breaks request.readLine()

2011-10-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=38346

--- Comment #8 from naani...@gmail.com 2011-10-25 06:49:15 UTC ---
thi issue still occurs with tomcat 5.5.28. Could you please let me know, how to
apply this patch to 5.5.28?

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 38346] InputBuffer breaks request.readLine()

2011-10-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=38346

--- Comment #9 from Rainer Jung rainer.j...@kippdata.de 2011-10-25 08:33:03 
UTC ---
This is very unlikely the same problem.

Bugzilla is not a support form.
Please post your problem description to the Tomcat users list.

Regards,

Rainer

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 38346] InputBuffer breaks request.readLine()

2011-10-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=38346

--- Comment #10 from naani...@gmail.com 2011-10-25 09:02:16 UTC ---
Thanks for your response Jung. We have an environment using HTTP connector. The
issue does not occur, other environment using AJP connector.

In code we are using
BufferedReader in = request.getReader();

When a request is sent on AJP connector environment, the above code reads only
8192 length, not whole.

But if a request is sent on HTTP connector environment, the same method reads
whole data. do you have any idea.. Please help.

The Tomcat version same in the both of the environments above.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 38346] InputBuffer breaks request.readLine()

2011-10-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=38346

--- Comment #11 from Rainer Jung rainer.j...@kippdata.de 2011-10-25 09:07:46 
UTC ---
Please discuss this on the Tomcat users list, see
http://tomcat.apache.org/lists.html

Thank you.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 38346] - InputBuffer breaks request.readLine()

2007-06-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=38346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38346


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Additional Comments From [EMAIL PROTECTED]  2007-06-01 19:09 ---
*** Bug 38836 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 38346] - InputBuffer breaks request.readLine()

2006-01-23 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=38346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38346





--- Additional Comments From [EMAIL PROTECTED]  2006-01-23 15:48 ---
I was at our customers side today. The problem is always reproducible with the
ajp connector. On his system, I can not reproduce with HTTP connector. But from
the code in InputBuffer it's clear, that the occurence of the bug only depends
on the amount of data received on the socket, when the buffer loads new data.

I'm pretty confident, that the patch also fixes bugs 34829, 28959, 27447, and
24897. I know, that CoyoteReader/InputBuffer/(Byte|Char)Chunk are difficult to
understand and noone wants to touch them. But I instrumented the classes to
exactly find out what's happening, and if Remy (or whoever is willing to dig
into it) likes more explanation of the patch please ask.

At the customer's installation his problem was fixed with the patch.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 38346] - InputBuffer breaks request.readLine()

2006-01-23 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=38346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38346


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2006-01-24 05:22 ---
(In reply to comment #5)
 I was at our customers side today. The problem is always reproducible with 
the
 ajp connector. On his system, I can not reproduce with HTTP connector. But 
from
 the code in InputBuffer it's clear, that the occurence of the bug only 
depends
 on the amount of data received on the socket, when the buffer loads new data.

By default, the HTTP connector only reads 4K at a time, so serendipitously 
this bug doesn't show itself.

The patch has been committed to the SVN trunk, and will appear in 5.5.16.



-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 38346] - InputBuffer breaks request.readLine()

2006-01-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=38346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38346





--- Additional Comments From [EMAIL PROTECTED]  2006-01-21 21:36 ---
Created an attachment (id=17478)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=17478action=view)
Patch for InputBuffer fixing 1) and 2)


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 38346] - InputBuffer breaks request.readLine()

2006-01-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=38346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38346





--- Additional Comments From [EMAIL PROTECTED]  2006-01-21 21:37 ---
Created an attachment (id=17479)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=17479action=view)
Test JSP

Test JSP to be called by the next attachment

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 38346] - InputBuffer breaks request.readLine()

2006-01-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=38346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38346





--- Additional Comments From [EMAIL PROTECTED]  2006-01-21 21:38 ---
Created an attachment (id=17480)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=17480action=view)
Test Client perl script

Client side script which posts data to the test JSP to reproduce both bugs.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 38346] - InputBuffer breaks request.readLine()

2006-01-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=38346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38346





--- Additional Comments From [EMAIL PROTECTED]  2006-01-21 21:39 ---
By the way: the same problem (and the same fix) apply to the 5.0 branch.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]