Re: Re : Using SolrJ with Tika

2009-09-03 Thread Grant Ingersoll
urent De : Abdullah Shaikh À : solr-user@lucene.apache.org Envoyé le : Jeudi, 3 Septembre 2009, 14h31mn 10s Objet : Re: Using SolrJ with Tika Hi Laurent, I am not sure if this is what you need, but you can extract the content from the uploaded document (MS Docs

Re : Using SolrJ with Tika

2009-09-03 Thread Angel Ice
yé le : Jeudi, 3 Septembre 2009, 14h31mn 10s Objet : Re: Using SolrJ with Tika Hi Laurent, I am not sure if this is what you need, but you can extract the content from the uploaded document (MS Docs, PDF etc) using TIKA and then send it to SOLR for indexing. String CONTENT = extract the content using

Re: Using SolrJ with Tika

2009-09-03 Thread Abdullah Shaikh
Hi Laurent, I am not sure if this is what you need, but you can extract the content from the uploaded document (MS Docs, PDF etc) using TIKA and then send it to SOLR for indexing. String CONTENT = extract the content using TIKA (you can use AutoDetectParser) and then, SolrInputDocument doc = ne

Re: Using SolrJ with Tika

2009-09-02 Thread Grant Ingersoll
Hi Angel, I'm looking into it. Might need a new SolrRequest, but still playing around and will let you know... -Grant On Sep 2, 2009, at 4:56 AM, Angel Ice wrote: Hi everybody. I hope it's the right place for questions, if not sorry. I'm trying to index rich documents (PDF, MS docs etc)

Re: Re : Using SolrJ with Tika

2009-09-02 Thread rajan chandi
oking for a way to do the same thing for rich document, once my > webapp has finished its job with the document. > > Regards, > > Laurent > > > > > > ____ > De : rajan chandi > À : solr-user@lucene.apache.org > Envoyé le : Me

Re : Using SolrJ with Tika

2009-09-02 Thread Angel Ice
.apache.org Envoyé le : Mercredi, 2 Septembre 2009, 16h13mn 22s Objet : Re: Using SolrJ with Tika Laurent, Check-out Solr 1.4. You can download the trunk and Build it on your box. The Solr 1.4 does this out-of-the-box. No configuration required. You can use HTTP POST to post the document using some Li

Re: Using SolrJ with Tika

2009-09-02 Thread rajan chandi
Laurent, Check-out Solr 1.4. You can download the trunk and Build it on your box. The Solr 1.4 does this out-of-the-box. No configuration required. You can use HTTP POST to post the document using some Linux utility like Curl and the PDF/Word/RTF/PPT/XLS etc. will be indexed. We tested this las

Using SolrJ with Tika

2009-09-02 Thread Angel Ice
Hi everybody. I hope it's the right place for questions, if not sorry. I'm trying to index rich documents (PDF, MS docs etc) in SolR/Lucene. I have seen a few examples explaining how to use tika to solve this. But most of these examples are using curl to send documents to Solr or an HTML POST wi