Saving an XML DOM object is also known as serializing the DOM. It involves a call to the save method on the DOM object. To demonstrate this, we will continue from the previous exercise, and save the DOM object that was loaded from stocks.xml to a different file, myStocks.xml.
This project uses or creates the following files.
| Component | Description |
|---|---|
| Source: saveDOM.cpp | Saves an XML DOM object, pXMLDom, to a new file. |
| Output | When you build and run the saveDOM project, you should get this output in a console window. |
To create the loadDOM Visual C++ project
Next, we'll add the source code for the saveDOM project.