Re: solr and Oracle 10g App Server

2007-07-30 Thread Ryan McKinley
many third party parsers (like xerces I think) handle this automatically but in general they should be removed. rev 561050 ryan

RE: solr and Oracle 10g App Server

2007-07-30 Thread Will Johnson
iss [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 12:36 PM To: solr-user@lucene.apache.org Subject: RE: solr and Oracle 10g App Server It was one I downloaded. However, a quick inspection of the source file indicates the same flaw in the source web.xml: >From >http://svn.apache.o

RE: solr and Oracle 10g App Server

2007-07-30 Thread Jason P. Weiss
other app servers/xml parsers are smart enough to ignore the leading characters rather than blowing chunks on them. Jason -Original Message- From: Ryan McKinley [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 11:25 AM To: solr-user@lucene.apache.org Subject: Re: solr and Oracle 1

Re: solr and Oracle 10g App Server

2007-07-30 Thread Ryan McKinley
Jason P. Weiss wrote: I had some trouble getting the current production build (1.2.0) working on 10gR3 (10.1.3.0.0). I had to remove 3 bad characters off of the front of the web.xml file and re-jar the WAR file. It worked perfectly after that minor modification. Was this a .war you downloade

RE: solr and Oracle 10g App Server

2007-07-30 Thread Jason P. Weiss
Hostetter [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 2:13 AM To: solr-user@lucene.apache.org Subject: Re: solr and Oracle 10g App Server i noticed this message while catching up on some mail backlog ... i don't know anything baout Oracle's app server, but some creative googling for

Re: solr and Oracle 10g App Server

2007-07-30 Thread Chris Hostetter
i noticed this message while catching up on some mail backlog ... i don't know anything baout Oracle's app server, but some creative googling for the error message you cited suggests to me that "Failed in uploading archive. Invalid archive file:" is a common error message preamble anytime Oracle's

solr and Oracle 10g App Server

2007-07-23 Thread Richard Eibrand
Hi, I've tried to deploy the solr war file in Oracle 10G, but keep getting the following error: " Failed in uploading archive. Invalid archive file: Start of root element expected." I've searched the mailing lists and google'd around for any pointers, but have not had any luck finding anything

Re: Solr and Oracle

2006-11-24 Thread Walter Underwood
I am doing this. Let's assume that you can make a query so that each row of the result is one document that you want to index. Create an XML document in Solr update format in a StringBuilder, then POST that to the Solr instance. After about 1000 documents, post a "". After all the rows, post a "",

Re: Solr and Oracle

2006-11-24 Thread Yonik Seeley
On 11/23/06, Nicolas St-Laurent <[EMAIL PROTECTED]> wrote: Does someone use Solr to index/search in a database instead of XML documents ? Solr doesn't index/search XML documents, only uses XML as a transport syntax for adding documents to Solr. There has been some recent work on a CSV loader,

Re: Solr and Oracle

2006-11-24 Thread Nicolas St-Laurent
Thank you Bertrand. The documentation on Solr is still sparse. I've already looked in SolrResources, find some idea, but not exactly what I need. When my solution will work, I will document it into the wiki. Nicolas Le 06-11-24 à 02:48, Bertrand Delacretaz a écrit : On 11/23/06, Nicolas

Re: Solr and Oracle

2006-11-24 Thread Bertrand Delacretaz
On 11/23/06, Nicolas St-Laurent <[EMAIL PROTECTED]> wrote: ...I index huge Oracle tables with Lucene with a custom made indexer/search engine. But I would prefer to use Solr instead... Instead of using Lucene's API directly, with Solr you'll have to add your documents to the index using HTTP P

Re: Solr and Oracle

2006-11-23 Thread Michael Imbeault
I index documents I have in a mysql database via xml. You can build your xml documents on the fly with the data from your database and index that, no problem at all. Michael Imbeault CHUL Research Center (CHUQ) 2705 boul. Laurier Ste-Foy, QC, Canada, G1V 4G2 Tel: (418) 654-2705, Fax: (418) 654-

Solr and Oracle

2006-11-23 Thread Nicolas St-Laurent
Hi, Does someone use Solr to index/search in a database instead of XML documents ? I search for information about this and I don't find any. Actually, I index huge Oracle tables with Lucene with a custom made indexer/search engine. But I would prefer to use Solr instead. If someone can gi