java-user@lucene.apache.org
[Top] [All Lists]

luceneweb example returning null hrefs

Subject: luceneweb example returning null hrefs
From: SEAN MCELROY
Date: Fri, 28 Jul 2006 10:49:42 +0100 BST
Hello,
   
  I am trying to use the luceneweb application that is shipped with the lucene 
installation. I have followed the installation instructions and the luceneweb 
application has been successfully deployed using Tomcat 5.5.9. However all the 
results returned point to http://localhost:8080/luceneweb/null. The version of 
lucene I am using is 2.0.0, I have had to change the following code in 
results.jsp to get the example to work
   
  Original code
  //query = QueryParser.parse(queryString, "contents", analyzer); //parse the 
  
  //Replaced code - found this on the net
  QueryParser qp = new QueryParser("contents", analyzer); 
query = qp.parse(queryString); 

  Can anyone shed some light on this problem?
   
  Thanks.
<Prev in Thread] Current Thread [Next in Thread>