What is the diffrence between the following:
parser.setFeature("http://xml.org/sax/features/validation",true);
and
parser.setFeature("http://apache.org/xml/features/validation/schema",true);
and
parser.setValidating(true);
I found the exact question twice on googling but not the answer
I am using org.apache.commons.digester, i am calling setFeature or setValidating on the digester.