In my application I want to use xerces-c to create a skeleton of a DOM
document based on a schema containing default values for all elements.
There would be no XML file to parse. I would then find document nodes by
name and set the element values programmatically to their actual values.
After I have set the values I would then write the document to an XML file
that has the necessary attributes to associate itself with the schema.
How do I get the document object without parsing and XML file? Is this
feasible with xerces-c? If so, can you point me to where I should start? I
mean beyond the API TOC - I've studied the API and samples and haven't found
the answer yet ;).