In article < .com>,
"Curious Joe" <> wrote:
> I am considering using XML to track some items in an application I
> wrote. Since I am new to using XML in anything besides the WWW, I am
> not sure of the utilities that exist.
>
> I need something that will allow me to read a value, write full files,
> insert tags, delete tags, etc.
>
> I have considered just banging out a quick program in C++ but figure
> there has to be programs/api's already out there that will accomplish
> what I need.
>
> Can anyone point me in the right direction for this?
>
> Thanks,
>
> CJ
libxml is very good; xerces is extensive but I find it a bit heavy and
the character handling can be a pain (maybe try the recipe in the C++
Cookbook [D.R. Stephens et al., pub. O'Reilly] to help you). You might
try TinyXML if your needs are not too demanding. For manipulation of an
existing xml into another xml, look at xslt and libxslt.
cheers
shaun
|