Re: Question about sending solrconfig and schema files with java

2014-06-21 Thread Frederic Esnault
y, June 20, 2014 7:03 PM > > To: solr-user@lucene.apache.org > Subject: Re: Question about sending solrconfig and schema files with java > > Hi Jack, actually i posted on OS first, but got no anwser. > Check here : > https://stackoverflow.com/questions/24296014/datastax- > ds

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Jack Krupansky
: Frederic Esnault Sent: Friday, June 20, 2014 11:50 AM To: solr-user@lucene.apache.org Subject: Re: Question about sending solrconfig and schema files with java Hi Shawn, Actually i should say that i'm using DSE Search (ie. Datastax Enterprise with SolR enabled). With cURL, i'm doing

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Frederic Esnault
> > -Original Message- From: Frederic Esnault > Sent: Friday, June 20, 2014 11:50 AM > To: solr-user@lucene.apache.org > Subject: Re: Question about sending solrconfig and schema files with java > > > Hi Shawn, > > Actually i should say that i'm using DSE

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Jack Krupansky
probably not Solr-related. Sorry for the inconvenience! -- Jack Krupansky -Original Message- From: Frederic Esnault Sent: Friday, June 20, 2014 11:50 AM To: solr-user@lucene.apache.org Subject: Re: Question about sending solrconfig and schema files with java Hi Shawn, Actually i should

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Frederic Esnault
Hi Shawn, Actually i should say that i'm using DSE Search (ie. Datastax Enterprise with SolR enabled). With cURL, i'm doing like this : $ curl http://localhost:8983/solr/resource/nhanes_ks.nhanes/solrconfig.xml --data-binary @solrconfig.xml -H 'Content-type:text/xml; charset=utf-8' $ curl http:/

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Shawn Heisey
On 6/20/2014 8:46 AM, Frederic Esnault wrote: > First thank you for taking the time to answer me. > > Actually i tried looking for a way to use SolrJ to upload my files, but i > cannot find anywhere informations about how to create nodes with their > config files using SolrJ. > All websites, blogs

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Frederic Esnault
Hi Alexandre, Nope, I cannot access the server (well i can actually, but my users won't be able to do so), and i can't rely on an http curl call. As for the final http call indicated in the link you gave, this is my last step, but before that i need my solrconfig.xml and schema.xml uploaded via j

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Alexandre Rafalovitch
On Fri, Jun 20, 2014 at 9:46 PM, Frederic Esnault wrote: > Actually i tried looking for a way to use SolrJ to upload my files, but i > cannot find anywhere informations about how to create nodes with their > config files using SolrJ. Is this something solvable with configsets? https://cwiki.apach

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Frederic Esnault
Hi Shawn, First thank you for taking the time to answer me. Actually i tried looking for a way to use SolrJ to upload my files, but i cannot find anywhere informations about how to create nodes with their config files using SolrJ. All websites, blogs and docs i found seem to be based on the princ

Re: Question about sending solrconfig and schema files with java

2014-06-20 Thread Shawn Heisey
On 6/20/2014 5:16 AM, Frederic Esnault wrote: > I know how to send solrconfig.xml and schema.xml files to SolR using curl > commands. > But my problem is that i want to send them with java, and i can't find a > way to do so. > I used HttpComponentsand got http headers before the file begins, which

Question about sending solrconfig and schema files with java

2014-06-20 Thread Frederic Esnault
Hi, I know how to send solrconfig.xml and schema.xml files to SolR using curl commands. But my problem is that i want to send them with java, and i can't find a way to do so. I used HttpComponentsand got http headers before the file begins, which SAX parser does not like at all. What is the best w