Re: POST question

2013-07-11 Thread John Randall
I'll probably move to Solr 4.x, so I'm going to try a plugin instead. Thanks for you insights. From: Shawn Heisey To: solr-user@lucene.apache.org Sent: Thursday, July 11, 2013 6:28 PM Subject: Re: POST question On 7/11/2013 4:12 PM, John Randall

Re: POST question

2013-07-11 Thread John Randall
I'll try the plugin. Thanks. From: Roland Villemoes To: "solr-user@lucene.apache.org" ; John Randall Sent: Thursday, July 11, 2013 6:21 PM Subject: RE: POST question Hi John, You can't make a browser to a HTTP POST by adding a URL i

Re: POST question

2013-07-11 Thread Shawn Heisey
On 7/11/2013 4:12 PM, John Randall wrote: I want to use a browser and use HTTP POST to add a single document (not a file) to Solr. I don't want to use cURL. I've made several attempts, such as the following: http://localhost:8080/solr/update?commit=true&stream.type=text/xml&;61234567WAR OF THE

RE: POST question

2013-07-11 Thread Roland Villemoes
Hi John, You can't make a browser to a HTTP POST by adding a URL in a browser. You are doing a HTTP GET. So - use curl, or make a small application for doing the HTTP POST. Or even better: Use a browser plugin. Several of these exists. Example: DEV HTTP CLIENT extension for Chrome. Rola