Hello,
I am trying to create this xml based application in which I try to make
additional copies of certain nodes in my xml document.
For example if my xml document was:
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>
An in-depth look at creating applications
with XML.
</description>
</book>
I want to be able to write an entire new node for book changing values of
some tags within it (price or date for example). At the end I want both the
current book node and the new one that I add.
Can you guide me to some documentation/classes that deals with such an
issue. I just get overwhelmed looking at all the classes in the xerces C++
documentation.
Thanks in advance.
Regards,
Sanat.