Kenny Peng
Kenny Peng

Reputation: 1931

Alternatives to expat for stream-oriented XML parsing in C++

Are there alternatives to expat for stream-oriented XML parsing in C++? The data that I am dealing with arrives over a TCP connection and there are multiple XML documents to deal with, which means I have to reset the XML parser every time there is a new document. The parser doesn't need to be standards-compliant; I'm interested in being able to parse the XML syntax using a callback-oriented process, rather than conforming to a particular schema.

Upvotes: 0

Views: 1118

Answers (2)

Gianni
Gianni

Reputation: 4390

You could try Apache's Xerces.

Upvotes: 2

wilx
wilx

Reputation: 18228

What about Xerces-C++?

Upvotes: 2

Related Questions