Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ implementation of XML schema XSD 1.1?

Tags:

c++

xml

xsd

xsd-1.1

Is there any existing C++ implementation of the XML Schema XSD 1.1?

I found xerces-c++-3.1.1, but it only implements XSD 1.0. The java counterpart of this project does implement XSD 1.1.

I am notably looking for a way to implement the 'assert' functionality.

like image 204
wpb Avatar asked Oct 24 '12 20:10

wpb


1 Answers

The only released XSD 1.1 processors I am aware of are Xerces-J and Saxon-EE, which are both Java-based (though Saxon-EE is also released on .NET).

(EDIT, SIX YEARS LATER)

There is also an implementation from Altova.

like image 133
Michael Kay Avatar answered Oct 23 '22 17:10

Michael Kay