parsing an XML file using C++ library tinyxml!
Hi all,
I am working with c++ and new to XML. I have a work with TinyXML. I have understood classes and functions of tinyxml. I want to parse my XML file which is like this:
<?xml version="1.0" encoding="utf-8"?>
<users source="URL" challenge="EncodedString" session="String">
<user name="ABC" password="abc" ></user>
<user name="XYZ" password="xyz" ></user>
<source level=""> URL </source>
</users>
I want to parse this xml file using tinyxml so that related data can be transferred to database.
Kindly help
regards
|