vote up 3 vote down star
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.

flag

59% accept rate
Tommy, please ask a new question, rather than changing this one. – Adam Davis Feb 26 at 23:54

6 Answers

vote up 3 vote down check

MiniXML might be what you're looking for, if you need something simple, easy, and C:

Mini-XML: Lightweight XML Library

Mini-XML is a small XML library that you can use to read and write XML and XML-like data files in your application without requiring large non-standard libraries. Mini-XML only requires an ANSI C compatible compiler (GCC works, as do most vendors' ANSI C compilers) and a 'make' program.

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

link|flag
vote up 4 vote down

I like libxml. Here is an example of use:

#include <libxml/parser.h>

int
main(void)
{

  xmlNodePtr root, node;
  xmlDocPtr doc;
  xmlChar *xmlbuff;
  int buffersize;

  /* Create the document. */
  doc = xmlNewDoc(BAD_CAST "1.0");
  root = xmlNewNode(NULL, BAD_CAST "root");

  /* Create some nodes */
  node = xmlNewChild(root, NULL, BAD_CAST "node", NULL);
  node = xmlNewChild(node, NULL, BAD_CAST "inside", NULL);
  node = xmlNewChild(root, NULL, BAD_CAST "othernode", NULL);

  /* Put content in a node: note there are special characters so 
     encoding is necessary! */
  xmlNodeSetContent(node, 
                xmlEncodeSpecialChars(doc, BAD_CAST "text con&tent and <tag>"));

  xmlDocSetRootElement(doc, root);

  /* Dump the document to a buffer and print it for demonstration purposes. */
  xmlDocDumpFormatMemory(doc, &xmlbuff, &buffersize, 1);
  printf((char *) xmlbuff);

}

Compiled with 'gcc -Wall -I/usr/include/libxml2 -c create-xml.c && gcc -lxml2 -o create-xml create-xml.o', this program will display:

% ./create-xml   
<?xml version="1.0"?>
<root>
  <node>
    <inside/>
  </node>
  <othernode>text con&amp;tent and &lt;tag&gt;</othernode>
</root>

For a real example, see my implementation of RFC 5388.

link|flag
Very cool, thanks. – Tommy Feb 27 at 23:20
vote up 0 vote down

[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.

link|flag
Ther markup of this answer would deserve a check... – bortzmeyer Feb 27 at 7:59
Yep, but the fact that I'm too lame to figure out how to use the links shouldn't detract from looking into both these libraries. They're both quite good. – Crowley Mar 3 at 1:11
vote up 1 vote down

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

link|flag
vote up 2 vote down

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.

link|flag
Very bad idea: you will probably to forget to escape special characters like & or < and you will have to deal with encoding issues yourself. – bortzmeyer Feb 27 at 7:51
No disagreement about the likelihood of errors - you are just echoing what I said. – consultutah Feb 27 at 22:27
vote up 4 vote down

Xerces is known to be easy, give it a try

link|flag
Nice, I just found it. – Tommy Feb 26 at 23:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.