Jason Boss wrote:
root cause

javax.servlet.ServletException
        at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:536)
        at org.apache.jsp.search_jsp._jspService(search_jsp.java:460)

What version of Nutch are you running? Have you modified search.jsp? In my search_jsp.java (found under Tomcat's 'work' directory) the call to handlePageException is at line 488, not 460, so it looks like your search.jsp is different than mine.


Tomcat is not providing a good stack trace here. You might look in tomcat's logs to see if there's anything more informative there. Alternately, insert something like the following at the top of search.jsp:

<% try { %>

then put something like this at the bottom:

<% } catch (Throwable t) {
     t.printStackTrace(new PrintWriter(out));
   }
%>

Then run 'ant war' to rebuild the war file, move it to the webapps directory, removing the old version, restart tomcat and retry.

This should give you more information about what's going on.

Thanks,

Doug


------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click _______________________________________________ Nutch-general mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nutch-general

Reply via email to