[Bug 60750] still content-length header with chunked

2017-02-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60750 qixiaobo...@gmail.com changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INV

[Bug 60750] still content-length header with chunked

2017-02-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60750 --- Comment #6 from qixiaobo...@gmail.com --- case CLOSE_NOW: { // Block further output getOutputBuffer().finished = true; setErrorState(ErrorState.CLOSE_NOW, null); break; } public void

[Bug 60750] still content-length header with chunked

2017-02-21 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60750 --- Comment #5 from qixiaobo...@gmail.com --- Very simple code! OutputStream out = outputMessage.getBody(); String text = JSON.toJSONString(obj, features); byte[] bytes = text.getBytes(charset); out.write(bytes);

[Bug 60750] still content-length header with chunked

2017-02-21 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60750 --- Comment #4 from Christopher Schultz --- What code do you have that results in a non-zero chunk followed by *no* final zero-byte chunk? -- You are receiving this mail because: You are the assignee for the bug. -

[Bug 60750] still content-length header with chunked

2017-02-20 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60750 --- Comment #3 from qixiaobo...@gmail.com --- Created attachment 34772 --> https://bz.apache.org/bugzilla/attachment.cgi?id=34772&action=edit error request without 0-sized chunk -- You are receiving this mail because: You are the assignee f

[Bug 60750] still content-length header with chunked

2017-02-20 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60750 --- Comment #2 from qixiaobo...@gmail.com --- Created attachment 34771 --> https://bz.apache.org/bugzilla/attachment.cgi?id=34771&action=edit normal request with 0-sized chunk -- You are receiving this mail because: You are the assignee for

[Bug 60750] still content-length header with chunked

2017-02-20 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60750 Konstantin Kolinko changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---