===================================================
DBXmlRequest v0.1
===================================================
Now you can request your xml documents on
the web and parse with the TinyXML.
===================================================
Manual
===================================================
First, create a pointer to DBXmlRequest, and call
the constructor, witch have two parameters:
DBXmlRequest *xml = new DBXmlRequest(
"www.yoursite.com", // Without http
"yourfile.xml", // You can put the dir
);
Now, you call the method Download and verify if
it downloads:
if (xml->Download())
{
// It Downloads!
}
You have 3 possibilities, save the XML on file,
return the xml string or return the TiXmlDocument:
xml->GetXmlString(); // It Returns a char*
xml->SaveFile("Filename.xml"); // It saves
xml->getTiXmlDocument(); // Return a TiXmlDocument*
Good luck with this! =D
===================================================
http://dbxmlrequest.googlecode.com/
http://crocidb.com/
http://codaset.com/crocidb/dbxmlrequest
by CrociDB