Solr search query returning full head exception
c#-4.0, jetty, solr, solrnet
Solution
Looks like you are running into jetty's default GET parameter size limit. This can be adjusted by changing headerBufferSize in jetty.xml.
Refer to this link on configuring jetty - http://docs.codehaus.org/display/JETTY/Configuring+Connectors
Problem
I am calling remote solr search hosted on other machine in a c# application. Now since my query length becomes too large so search engine is returning full head error. I can't reducing query length. so i just wanted to know can i make a post request for the same? how would i make this?Please suggest me.Thanks.