XML file in VC++
-
I don't know XML and I mean it. :p I need code in VC++ that can make an XML file out of a byte array. Can somebody help with that?:)
With out some description of your goals and what the structure of the data is in the array, any suggestions would be rather open. Have you looked through any tutorials? Like the ones I mention below. ""
-
With out some description of your goals and what the structure of the data is in the array, any suggestions would be rather open. Have you looked through any tutorials? Like the ones I mention below. ""
-
I need a code snippet in VC++ that can read an ascii (or Base64 encoded) file and generate an XML file. thanks for your 'help'.
Well do you just need to read in a string and then save it as a CData section to a single element? I would expect you wanted to organize the data in some hierarchical scheme. Have you just browsed the XML code here in CP and looked for examples? Kristen Wegner's is good work (along with many others) http://www.codeproject.com/soap/pugxml.asp[^] There are several "SET" methods to add elements, attributes and their values. ""