Community
Participate
Working Groups
Build Identifier: 3.6 - 20100617-1415 // WTP: 3.2.1 Bug 287128 checks the web.xml to validate <jsp:include>-Tags that include Servlets. But it seems to be that also the <url-pattern> from a filter definition in the web.xml are used to validate Servlets. Reproducible: Always Steps to Reproduce: 1.Create a Project like in Bug 287128 (https://bugs.eclipse.org/bugs/show_bug.cgi?id=287128= 2.Add a catch-all Filter (url-pattern with /*) to the web.xml File: <filter> <filter-name>TestFilter</filter-name> <filter-class>InvalidFilterClass</filter-class> </filter> <filter-mapping> <filter-name>TestFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> 3. Add a invalid jsp:include to your jsp-file: <jsp:include page="/InvalidServlet" /> The invalid include is not market as a warning/error!
Created attachment 186705 [details] proposed patch
Released