The web deployment descriptor, WEB-INF\web.xml distributed with JSPWiki V2.0.52, contains a bad DTD reference. Apparently, Tomcat does not use the DTD to validated the XML document, but the problem will become apparent if you try to display the file using the Windows Internet Explorer or edit the file using a validating editor like Visual SlickEdit
.
To circumvent this problem, edit your web.xml file and change the bad DTD reference from
http://java.sun.com/j2ee/dtds/web-app_2.2.dtd
to
http://java.sun.com/j2ee/dtds/web-app_2_2.dtd
Notice the first period is changed to an underscore.
The former seems to be a redirect to the latter. So IE or Slickedit don't seem to recognize that.
But it has been fixed in the CVS now.