Alam Brito
Alam Brito

Reputation: 463

XML bindings for Microsoft XMLLite

I have a C++ project in which I am using Microsoft XmlLite for parsing several XML files. Now I have a new file that I need to parse and I have an XSD schema for it. I know there are many C++ XML binding tools out there, but all I have found so far require me to include yet another XML parsing library, which I would like to avoid. Hence my question: is there any open source or commercial tool that generates C++ XML bindings based on Microsoft XmlLite?

Upvotes: 2

Views: 687

Answers (1)

Paul Sweatte
Paul Sweatte

Reputation: 24627

CodeSynthesis seems to be the closest tool which will provide in-memory XML data binding to integrate with XMLLite.

The C++/Tree mapping generates C++ classes that represent data types defined in XML Schema, a set of parsing functions that convert XML documents to a tree-like in-memory object model, and a set of serialization functions that convert the object model back to XML.

Upvotes: 2

Related Questions