Are there any good XSLT libraries for C++ which support the 2.0 standard? I've found several libraries but all of them had no implementation for XSLT 2.0.
Asked
Active
Viewed 2,633 times
4
-
As far as I know, the only implementations of XSLT 2.0 are Java implementations. – Nicol Bolas Feb 05 '13 at 08:36
-
1and there are no C++ bindings for it? – tuxtimo Feb 05 '13 at 08:37
-
1`XQilla` says it is in `Alpha` stage for `XSLT 2.0` support: http://xqilla.sourceforge.net/XSLT2 – Adri C.S. Feb 05 '13 at 09:15
-
1You may give try to XQilla, I know for sure it support XSLT 2.0 but i think it support it partially I am not sure about your use case so its worth to give it a try! http://xqilla.sourceforge.net/HomePage – Saqlain Feb 05 '13 at 09:19
-
There's is partial support for XSLT 2.0 in QT: [QtXmlPatterns](https://qt-project.org/doc/qt-5/xmlprocessing.html#xslt-2-0) – Paul Sweatte Aug 13 '14 at 18:44
1 Answers
2
On Windows there is AltovaXML which according to http://manual.altova.com/AltovaXML/altovaxmlcommunity/ can be used with "Programming languages such as C++ or any other that supports the COM interface.".

Martin Honnen
- 160,499
- 6
- 90
- 110
-
-
1I think Intel has a C or C++ implementation of XSLT 2.0 too but it is only available as part of their SOA web server and I am not even sure on which platforms that is available. There was also an attempt to upgrade libxslt to XSLT 2.0 but I think it failed to find funding. – Martin Honnen Feb 05 '13 at 10:36
-