this.saxParser.setProperty(ELEMS_URI, "lower");
this.saxParser.setFeature(OVERRIDE_NAMESPACES_URI, true);
this.saxParser.setFeature(INSERT_NAMESPACES_URI, true);
this.saxParser.setProperty(NAMESPACES_URI, XHTML_URL);
} catch (SAXNotRecognizedException e) {
throw new SetupException("Impossible to set property to HTML Parser", e);
} catch (SAXNotSupportedException e) {
throw new SetupException("Property not supported by the HTML Parser", e);
}
}