Jerome Louvel <contact <at> noelios.com> writes: > Good catch! This is now fixed as suggested in SVN trunk and 1.0 branch.
For those not using the SVN trunk, the workaround that worked for me was
increasing the header buffer to 8 KB:
private static final int HEADER_BUFFER = 8 * 1024;
...
component.getContext().getParameters().add("headerBufferSize",
Integer.toString(HEADER_BUFFER));
--Mike

