Hi guys,
Xindice servlet does not get deployed properly at least under Tomcat 4.0.1 with the supplied web.xml
Attached patch fixes the issue. It would be cool if somebody applied it
PS Even after this xmlrpc fails all the time... Can't make bin/xindice.bat to work
Regards, Vadim
Index: config/web.xml =================================================================== RCS file: /home/cvspublic/xml-xindice/config/web.xml,v retrieving revision 1.5 diff -u -r1.5 web.xml --- config/web.xml 17 Jun 2003 03:48:57 -0000 1.5 +++ config/web.xml 12 Jul 2003 03:56:45 -0000 @@ -22,4 +22,8 @@ <servlet-name>Xindice</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> + <servlet-mapping> + <servlet-name>Xindice</servlet-name> + <url-pattern>/</url-pattern> + </servlet-mapping> </web-app>