RE: Updating the index with a csv file

2008-09-29 Thread Steven A Rowe
arset=utf-8') but i was able to > > get this to work just fine on linux using the example setup... > > > > curl 'http://localhost:8983/solr/update/csv?commit=true' --data-binary > > @books.csv -H 'Content-type:text/plain; charset=utf-8' > > > > ...perhaps there is some eccentricity about windows curl? > > > > > > -Hoss > > > > > > > > -- View this message in context: > http://www.nabble.com/Updating-the-index-with-a-csv-file-tp197 > 06582p19727067.html Sent from the Solr - User mailing list archive at > Nabble.com. > >

Re: Updating the index with a csv file

2008-09-29 Thread vmaidel
ommit=true' --data-binary > @books.csv -H 'Content-type:text/plain; charset=utf-8' > > ...perhaps there is some eccentricity about windows curl? > > > -Hoss > > > -- View this message in context: http://www.nabble.com/Updating-the-index-with-a-csv-file-tp19706582p19727067.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Updating the index with a csv file

2008-09-28 Thread Koji Sekiguchi
> curl 'http://localhost:8983/solr/update/csv?commit=true' --data-binary @books.csv -H 'Content-type:text/plain; charset=utf-8' > > ...perhaps there is some eccentricity about windows curl? I tried this on cygwin and books.csv could be uploaded without problems. Koji

Re: Updating the index with a csv file

2008-09-27 Thread Chris Hostetter
: "The request sent by the client was syntactically incorrect (missing content : stream)" that usually means either the content type wasn't set, or there was no post data : curl http://localhost:8983/solr/update/csv --data-binary @blog.csv -H : 'Content-type:text/plain; charset=utf-8' : :

Updating the index with a csv file

2008-09-27 Thread vmaidel
ata-binary @blog.csv -H 'Content-type:text/plain; charset=utf-8' I use the windows version of curl, running this statement from the curl folder where the blog.csv file resides as well. Thank you. -- View this message in context: http://www.nabble.com/Updating-the-index-with-a-csv-file