// Parse the web application deployment descriptor
ClassLoader cl =
// (ClassLoader) ctxt.getAttribute(Constants.SERVLET_CLASS_LOADER);
this.getClass().getClassLoader();
ParserUtils pu = ParserUtils.createParserUtils(cl);
TreeNode webtld = pu.parseXMLDocument(WEB_XML, is);
Iterator taglibs = webtld.findChildren("taglib");
while (taglibs.hasNext()) {
// Parse the next <taglib> element
TreeNode taglib = (TreeNode) taglibs.next();