Closed GoogleCodeExporter closed 9 years ago
I'm applied this patch and it looks good, but in setupResponseHeaders isChunked
always appears to be false? Is this correct?
Original comment by tuc...@gmail.com
on 10 Aug 2009 at 10:34
Has this patched in the trunk code?
Original comment by benzhe...@gmail.com
on 8 Oct 2009 at 7:28
I came across this issue today while trying to pull a bunch of AJAX URLs into
the same domain. Solved it for my
environment by simply suppressing the transfer-encoding header in the
setupResponseHeaders method.
Attached is a smaller patch.
Original comment by zhemchu...@gmail.com
on 14 Oct 2009 at 6:13
Attachments:
We also had a similar problem with proxying from one webapp to another within a
single Tomcat container. For smallish responses like a few hundred bytes both
"Transfer-Encoding: Chunked" and "Content-Length: " HTTP headers were present
in the response while the response itself was non-chunked. For larger, chunked
encoded responses the HTTP header "Transfer-Encoding: Chunked" was present
twice. The first case confused browser-clients like Mozilla, but e.g. not
'wget' clients.
We applied the 2nd patch here above (Comment 3 by zhemchu...@gmail.com, Oct 13,
2009). This fixed the problem for us. I think I've also found the issue still
present in urlrewritefilter v4 and trunk.
Original comment by jus...@gmail.com
on 11 Oct 2011 at 1:18
2nd patch committed onto main trunk. I think this should fix the issue for
most people.
http://code.google.com/p/urlrewritefilter/source/detail?r=325
Original comment by p...@tuckey.org
on 31 Oct 2011 at 3:03
Original issue reported on code.google.com by
fortes...@gmail.com
on 18 May 2009 at 6:45Attachments: