Please visit our sponsors !
Parser Errors
The parseError object can be used to extract error information from the
Microsoft XML parser.
The parseError Object
If you try to open an XML document, the XML Parser might generate an error.
By accessing the parseError object, the exact error code, the error text, and
even the line that caused the error can be retrieved.
The parseError object is not a part of the W3C DOM standard.
File Error
With this code we can try to load a non existing file, and
display some of its error properties:
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("ksdjf.xml")
document.write("<br>Error Code: ")
document.write(xmlDoc.parseError.errorCode)
document.write("<br>Error Reason: ")
document.write(xmlDoc.parseError.reason)
document.write("<br>Error Line: ")
document.write(xmlDoc.parseError.line) |
Try it Yourself
XML Error
With this code we let the parser load an XML document that is not well formed.
(You can study more about Well Formed and Valid XML at our XML
School)
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("note_error.xml")
document.write("<br>Error Code: ")
document.write(xmlDoc.parseError.errorCode)
document.write("<br>Error Reason: ")
document.write(xmlDoc.parseError.reason)
document.write("<br>Error Line: ")
document.write(xmlDoc.parseError.line) |
Try it Yourself
or just look at the XML file
The parseError Properties
Property |
Description |
errorCode |
Returns a long integer error code |
reason |
Returns a string explaining the reason for the error |
line |
Returns a long integer representing the line number for the error |
linePos |
Returns a long integer representing the line position for the error |
srcText |
Returns a string containing the line that caused the error |
url |
Returns the url pointing the loaded document |
filePos |
Returns a long integer file position of the error |
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|