initialized = true;
} catch (Exception ex) {
throw new JasperException(Localizer.getMessage(
- "jsp.error.internal.tldinit", ex.getMessage()));
+ "jsp.error.internal.tldinit", ex.getMessage()), ex);
}
}
WebXml webXml = null;
try {
webXml = new WebXml(ctxt);
-
+ if (webXml.getInputSource() == null) {
+ return;
+ }
+
// Parse the web application deployment descriptor
TreeNode webtld = null;
webtld = new ParserUtils().parseXMLDocument(webXml.getSystemId(),
Correctly handle the setting of primitve bean values via expression
language. (markt)
</fix>
+ <fix>
+ Don't swallow exceptions when processing TLD files and handle the
+ case when there is no web.xml file. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Web applications">