Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any C++ XSLT library? [closed]

Tags:

c++

xml

xslt

xsd

I want to transform an XSD Document into XML Document(Template), is there any C++ XSLT library?

like image 509
metdos Avatar asked May 31 '10 06:05

metdos


2 Answers

Xalan might fit (I do not know all the features, but it is a reliable XSLT C++ transformation library).

like image 148
Thariama Avatar answered Oct 12 '22 00:10

Thariama


Outside of Windows I've mostly used Xalan. There is also libxslt, which has C++ bindings, and XQilla, which is built on Apache's Xerces-C library. On Windows, I've used mostly MSXML, but it is based on COM.

like image 27
Garett Avatar answered Oct 12 '22 01:10

Garett