Re: Trouble Implementing Extracting Request Handler

2010-03-16 Thread Lance Norskog
org/apache/solr/util/plugin/SolrCoreAware in the stack trace refers to an interface in the main Solr jar. I think this means that putting all of the libs in apache-tomcat-6.0.20/lib is a mistake: the classloader finds ExtractingRequestHandler in apache-tomcat-6.0.20/lib/apache-solr-cell-1.4.1-dev.

Re: Trouble Implementing Extracting Request Handler

2010-03-16 Thread Steve Reichgut
Lance, I tried that but no luck. Just in case the relative paths were causing a problem, I also tried using absolute paths but neither seemed to help. First, I tried adding ** as the full directory so it would hopefully include everything. When that didn't work, I tried adding paths directly

Re: Trouble Implementing Extracting Request Handler

2010-03-16 Thread Lance Norskog
NoClassDefFoundError usually means that the class was found, but it needs other classes and those were not found. That is, Solr finds the ExtractingRequestHandler jar but cannot find the Tika jars. In example/solr/conf/slrconfig.xml, there are several '' elements. These give classpath directories

Re: Trouble Implementing Extracting Request Handler

2010-03-15 Thread Steve Reichgut
Sure. I've attached two docs that have the stack trace and the full list of .jar files. On 3/15/2010 8:34 PM, Lance Norskog wrote: Please post the complete stack trace. Also, it will help if you make a full listing of all .jar files in the example/ directory. On Mon, Mar 15, 2010 at 7:12 PM, S

Re: Trouble Implementing Extracting Request Handler

2010-03-15 Thread Lance Norskog
Please post the complete stack trace. Also, it will help if you make a full listing of all .jar files in the example/ directory. On Mon, Mar 15, 2010 at 7:12 PM, Steve Reichgut wrote: > Thanks Lance. That helped ( we are using Solr-1.4). We've run into a > follow-on error though. It is giving the

Re: Trouble Implementing Extracting Request Handler

2010-03-15 Thread Steve Reichgut
Thanks Lance. That helped ( we are using Solr-1.4). We've run into a follow-on error though. It is giving the following error: ClassNotFoundException: org.apache.solr.util.plugin.SolrCoreAware Did we miss something else in the setup? Steve Is there something else we haven't copied On 3/15/201

Re: Trouble Implementing Extracting Request Handler

2010-03-15 Thread Lance Norskog
This assumes you use the Solr-1.4 release or the Solr-1.5-dev trunk. The ExtractingRequestHandler libraries are in contrib/extracting/lib You need to make a directory example/solr/lib and copy into it the apache-solr-cell jar from dist/ and all of the libraries from contrib/extracting/lib. The Wi

Re: Trouble Implementing Extracting Request Handler

2010-03-12 Thread Steve Reichgut
Hi Grant, Thanks for the feedback. In reading the Wiki, it recommended that you copy everything from example/solr/libs directory into a /libs directory in your instance. I went into my example/solr directory and only see two directories - "bin" and "conf". There is no "libs" directory. Where el

Re: Trouble Implementing Extracting Request Handler

2010-03-12 Thread Grant Ingersoll
On Mar 12, 2010, at 2:20 PM, Steve Reichgut wrote: > Now that I have configured my Solr instance for standard indexing, I wanted > to start indexing PDF's, MS Doc's, etc. When I tried to test it with a simple > PDF file, I got the following error: > > org.apache.solr.common.SolrException: la