Blogger :
E-Surfers Weblog
All posts :
All posts by E-Surfers Weblog
Category :
XML
Blogged date : 2004 Dec 30
The DOMDocument`s parseError property returns an IXMLDOMParseError object that contains information about the last parsing error. The object`s properties are:
- errorCode: Code number of the error. A zero value means there was no error. Numbers are negative numbers close to the smallest integer allowed.
- filepos: The absolute file position where the error occurred.
- line: The line number where the error occurred.
- linepos: The character position within the line where the error occurred.
- reason: Explains the reason of the error.
- srcText: The full text of the line where the error occurred.
- url: The URL of the XML file where the last parsing error occurred.
Now, create an XML file with error (bookmarkswitherr.xml):
Javalobby.org
http://www.javalobby.org/
And then test the paserError object:
Yeah, That`s it! An alert box pops up with all the IXMLDOMParseError object`s properties.