I am trying to parse a given XML against a DTD using javax.xml.parsers.SAXParser. But, I just dont want default attributes to get populated based on DTD. So I tried the setFeature of SAXParserFactory as described in http://xerces.apache.org/xerces2-j/features.html#nonvalidating.load-dtd-grammar:
SAXParserFactory fact = SAXParserFactory.newInstance();
fact.setFeature("http://apache.org/xml/features/nonvalidating/load-dtd-grammar", false);
But, it does not seem to work! I still get the output with default attributes populated! Could you please let me know on how to fix this?