What is the use or function of XML DOM?

What is the use or function of XML DOM?



- The XML DOM is used to define the standard model of the DOM structure and it defines all the properties of the XML elements or the methods for accessing it.

- XML DOM is used to create the instance of the XML parser by using the standard interfaces like COM.

- It consists of the inbuilt libraries and implementation code that is used to work with the document written in XML.

- It uses the command CreateObject method to be used with the XML DOM that allows the creation of the Parser object.

- The command that can be used in XML DOM is as follows:

Set objParser = CreateObject( "Microsoft.XMLDOM" )
Post your comment