Sachin
Sachin

Reputation: 21921

Parsing XML in C

How to parse XML response coming from the server in C. Do we have any standard libraries for it? Can some one provide me any idea

Upvotes: 1

Views: 510

Answers (4)

vtd-xml-author
vtd-xml-author

Reputation: 3377

In additional to SAX based parsing, there is also vtd-xml

Upvotes: 1

dstibbe
dstibbe

Reputation: 1697

Another SAX parser would be Xerces : http://xerces.apache.org/xerces-c/

Upvotes: 0

user181548
user181548

Reputation:

Benchmarks also exist to help you compare the two. libxml seems to be faster and have more functionality.

Upvotes: 3

Jim Ferrans
Jim Ferrans

Reputation: 31012

See Gnome (libxml) and expat.

Upvotes: 3

Related Questions