Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to apply XSLT 2.0 transformations in .net?

I understand that the .net XsltCompiledTransformation class supports only XSLT 1.0 transformations and Microsoft has no plans to even introduce support for XSLT 2.0.

I've looked at software for performing XSLT 2.0 transformations.

The problem is that I need an alternative to Microsoft's XsltCompiledTransformation class that will apply transformations on the fly in my program.

Is there a solution out there that does what I want? An open-source solution would be great, but a commercial solution could be acceptable, too.

like image 791
Vivian River Avatar asked Sep 17 '13 20:09

Vivian River


1 Answers

Saxon is available for .NET and supports XSLT 2.0. See http://www.saxonica.com/products/products.xml

like image 61
C. M. Sperberg-McQueen Avatar answered Oct 14 '22 01:10

C. M. Sperberg-McQueen