Re: POSTing to /select

2009-06-17 Thread Brian_K
r.java: >> 169 > > Yes, POST works fine... I think you just missed providing the q > parameter, which is required in the most basic case. > > Erik > > > -- View this message in context: http://www.nabble.com/Re%3A-POSTing-to--select-tp24077130p24079690.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: POSTing to /select

2009-06-17 Thread Walter Underwood
On the other hand, POST is the wrong HTTP semantic for a search request and makes it impossible to use HTTP caching. POST also makes all your requests look identical in the HTTP logs, so you can't do any log analysis. If GET works, always use GET. wunder On 6/17/09 9:18 AM, "Erik Hatcher" wrote

Re: POSTing to /select

2009-06-17 Thread Erik Hatcher
On Jun 17, 2009, at 12:01 PM, Brian_K wrote: Is it possible to query /select using http POST rather than GET? Is the syntax different it so? When I try, I receive an 500 response and a big fat exception. java.lang.NullPointerException at java.io.StringReader.(Unknown Source

POSTing to /select

2009-06-17 Thread Brian_K
at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:451) Thanks! Brian -- View this message in context: http://www.nabble.com/POSTing-to--select-tp24076780p24076780.html Sent from the Solr - User mailing list archive at Nabble.com.