Are they all this complex? : http://msdn.microsoft.com/en-us/library/ms766497(VS.85).aspx
Just need something basic to produce XML in C.
|
4
|
Are they all this complex? : http://msdn.microsoft.com/en-us/library/ms766497(VS.85).aspx Just need something basic to produce XML in C.
|
|||
|
|
|
MiniXML might be what you're looking for, if you need something simple, easy, and C:
However, there are a ton of them ranging in complexity and needs. MiniXML is nice in that it doesn't require more than a simple Ansi C compiler. A lot of them require other libraries, or specific compilers. -Adam |
||
|
|
|
|
I like libxml. Here is an example of use:
Compiled with 'gcc -Wall -I/usr/include/libxml2 -c create-xml.c && gcc -lxml2 -o create-xml create-xml.o', this program will display:
For a real example, see my implementation of RFC 5388. |
||
|
|
|
[link text][1] [1]: http://xmlsoft.org/ "libxml2" is an extensive C API for XML. [link text][1] [1]: http://www.aleksey.com/xmlsec/ "xmlsec" is a nice security compliment on top of libxml2. |
||||
|
|
|
The easiest way to make XML in C is the high-quality and free genx from Tim Bray: http://www.tbray.org/ongoing/When/200x/2004/02/20/GenxStatus |
||
|
|
|
|
The lightest way to produce XML in C is printf. There are definitely plenty of possible issues that could arise by doing it all yourself though, such as properly escaping xml entities. |
||||
|