Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Generating an XML document.

Hi,
I'm trying to generate an XML document using a C++ program. I'm using VC++
6 studio. If anyone knows how to go about this I'm more than open to suggestions.
Thanks.
[195 byte] By [Layla] at [2007-11-9 15:28:57]
# 1 Re: Generating an XML document.
use the msxml.dll
Anthony Jones at 2007-11-11 23:29:35 >
# 2 Re: Generating an XML document.
Or just use string concatenation or write text output to a stream.
"Anthony Jones" <Ant@yadayadayada.com> wrote in message
news:3ee72426@tnews.web.dev-archive.com...
> use the msxml.dll
>
>
Russell Jones at 2007-11-11 23:30:35 >
# 3 Re: Generating an XML document.
>Or just use string concatenation or write text output to a stream.

That might be workable but you would have to ensure to encode correctly
including the use of appropriate escape sequences for certain characters,
e.g., '<' becomes '<' etc.

Anthony.
Anthony Jones at 2007-11-11 23:31:44 >