I have a webapp (apache solr) that comes bundled with a web.xml. The
default looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<filter>
<filter-name>SolrRequestFilter</filter-name>
<filter-class>org.apache.solr.servlet.SolrDispatchFilter</filter-class>
I'm trying to override the filter-class, but no joy. I've tried putting
this fragment into web-jetty.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<filter>
<filter-name>SolrRequestFilter</filter-name>
<filter-class>mimo.AuthSolrDispatchFilter</filter-class>
Any help appreciated. Ehm.. in case it's not obvious.. I have no idea what
all of this does...
Thanks!
Original issue reported on code.google.com by miiim...@gmail.com on 18 May 2010 at 4:21
Original issue reported on code.google.com by
miiim...@gmail.com
on 18 May 2010 at 4:21