What is DOM Validation in XML

This article describe about DOM Validation in XML
  • 1936

DOM Validation

It is used to take some restriction

XML Errors will Stop you

Errors in XML documents will stop your XML program.

If the W3C XML specification states if any program should not process continuously an XML document then it finds an error. It has the reason that is XML software easy to write ,and that is why all XML document should be compatible.
And in HTML it was possible to create document with "errors" (ex: drop end tags.).This is the reason that HTML browsers are very big and incompatible, and browser have their own way to look like when encounter an HTML error.
With XML this should not be possible.

Verify your XML syntax

If you do any mistake in XML document then  it give the error message.

For example

<?xml version="1.0" ?>
<note>
<to>pulkit</to>
<from>vijay</From>
<heading>Remember me</Heading>
<body>Don't forget me this year</body>
</note>

 

Note: Here the ending tag of from  "</From>" and "</Heading>" give the error message because XML is space and case sensitive.

Verify Your XML File

https://dotnetheaven.com/error.xml

 

Note: If above mention url give the error message then "access denied" 

Further Readings

You may also want to read these related articles :

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.