Really useful software project management and source code hosting.    tell me more...
BROWSE: projects / users / groups
Public clone: git://codaset.com/crocidb/dbxmlrequest.git
star_disabled Dashboard Source Tickets Wiki Blog Network


Really Useful Social coding!

Codaset is an open system, so you can browse and search through all the open source projects, and check out what your friends are coding. Follow them, befriend them, and fork their code; quickly and easily.
Every single open source project you create is free, so come on and use Codaset at no cost. Your first private or semi-private project is also free. Read more about what it costs after that.
100644 1.158 kb text/plain raw file history
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
===================================================
                 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