How do we increase the maximum allowed HTTP GET query length in Jetty?
Solution 1:
<Set name="headerBufferSize">65536</Set>
is now deprecated. You can use:
<Set name="requestHeaderSize">65535</Set>
instead.
Solution 2:
A little late to the party, but I've just come up against the same problem.
Add the following to the connectors section of jetty.xml:
<Set name="headerBufferSize">65536</Set>
This will increase the header limit from the default of 4KB to 64KB.
Solution 3:
What's the maximum URL length in Tomcat?