6

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.

Vivian River
  • 31,198
  • 62
  • 198
  • 313
  • 5
    I disagree with your marking of my question as a duplicate. In the question you link to, the asker wants to know if MS plans to support XSLT 2.0 in .net. I knew that the answer that that question is "no" when I asked my question. I specifically asked about what solution I might use to obtain the functionality that isn't provided in .net. – Vivian River Sep 18 '13 at 16:19
  • I have to agree with the OP. The duplicate you linked to had answers from 2011 in it. Something can be a duplicate and still be very out of date. Many of the options offered in the other question may not even exist today. – SpaceCowboy74 Jul 01 '14 at 19:12

1 Answers1

3

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

C. M. Sperberg-McQueen
  • 24,596
  • 5
  • 38
  • 65
  • I tried this product and several of the ones linked in related questions. Saxon seems to work best, and the open-source version does everything I need. – Vivian River Sep 23 '13 at 19:46
  • Thank you. How do I implement it in my current web site? – Si8 Oct 28 '15 at 17:08