Click to See Complete Forum and Search --> : Binary data in XML file


ravash5000
June 12th, 2002, 08:52 PM
Hi,

Does anyone know if it is possible to store binary data such as an .exe or .jpg file into an XML document using DOM under C++?
If so, how????

dkar
June 13th, 2002, 12:35 AM
Hi.

Yes it's possible.
But XML is always text. And you need to represent your binary data in the text form. For example in HEX.

Good luck