You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WARNING 2024-03-25T20:50:08.512603Z The XML schema [XMLSchema.dtd] could not be found. This is very likely to break XML validation if XML validation is enabled.
WARNING 2024-03-25T20:50:08.513724Z The XML schema [datatypes.dtd] could not be found. This is very likely to break XML validation if XML validation is enabled.
WARNING 2024-03-25T20:50:08.514706Z The XML schema [xml.xsd] could not be found. This is very likely to break XML validation if XML validation is enabled.
The text was updated successfully, but these errors were encountered:
This is because Jasper expects things for XML to appear in a specific directory location on the servlet-api jar, which it does for Tomcat, but not the official Servlet API Jar.
Those warnings just mention that XML validation will not work.
But the only code that uses that DigesterFactory is JSP.
So it would only impact XML for JSP, which I believe is limited to JSP custom taglib XML.
Note: even the latest Servlet API Jar for ee11 does not contain those 3 XML files.
Seeing this in logs:
WARNING 2024-03-25T20:50:08.512603Z The XML schema [XMLSchema.dtd] could not be found. This is very likely to break XML validation if XML validation is enabled.
WARNING 2024-03-25T20:50:08.513724Z The XML schema [datatypes.dtd] could not be found. This is very likely to break XML validation if XML validation is enabled.
WARNING 2024-03-25T20:50:08.514706Z The XML schema [xml.xsd] could not be found. This is very likely to break XML validation if XML validation is enabled.
The text was updated successfully, but these errors were encountered: