Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Your question has no meaningful answer except in the context of a particular parser's API. If you don't identify the parser, the only reasonable answer is something along the lines of "the three expressions are spelled differently; next question?" So: which parser, which API? – C. M. Sperberg-McQueen Feb 13 at 15:35
@C. M. Sperberg-McQueen I have incorporated the details in the question. – Nik Feb 14 at 5:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.