How do we increase the maximum allowed HTTP GET query length in Jetty?
Posted
by Mike
on Server Fault
See other posts from Server Fault
or by Mike
Published on 2010-04-27T14:03:09Z
Indexed on
2010/04/27
14:03 UTC
Read the original article
Hit count: 240
We are using Jetty to run an Apache Solr index. We've had some queries that have grown way beyond the previously expected maximum length, and are now having issues wehre most queries are not returning any data because the URL gets truncated.
These requests are not being made through a browser, they're being made programmatically using the Apache_Solr_Service PHP library. The application is expecting queries to come in as HTTP GET requests, so simply switching to a POST will not solve this problem.
How can we increase the maximum allowed HTTP GET query length in Jetty?
Thanks!
© Server Fault or respective owner