Outputfrom dynamDOM Example

 

The dynamDOM application outputs an XML data file, dynamDom.xml, in the project's main directory. In addition to this file, you should see the following output in a console window.

The next topic demonstrates how to query nodes from DOM.

To test the dynamDOM example

  1. Verify that you get the following output:

Output

Dynamically created DOM:  
<?xml version="1.0"?>  
<!--sample xml file created using XML DOM object.-->  
<root created="using dom">  
        <node1>some character data</node1>  
        <node2><![CDATA[<some mark-up text>]]></node2>  
        <node3>  
                <subnode1/>  
                <subnode2/>  
                <subnode3/>  
        </node3>  
</root>  
  
DOM saved to dynamDom.xml