The latest I can find from the web and blogosphere indicate that Microsoft's XML team would be supporting XSLT 2.0 (now that it was a full blown W3C recommendation). I can't find anything beyond that.

What's the current status? Is it available in .NET 3.5/4.0 or are they stuck with XSLT 1.1 and pushing XQUERY and LINQ?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

It is not supported by Microsoft and there hasn't been any anouncement I'm aware of. Where did you hear about that?

UPDATE (after you added the link to the XML Team Blog):

It seems that Microsoft changed their strategy according to this interview with Chris Lovett, a Program Manager on the XML team at Microsoft, later the same year, so it's all about LINQ:

As for XSLT 2.0 - we’ve heard from customers and understand the improvements in XSLT 2.0 over XSLT 1.0, but right now we’re in the middle of a big strategic investment in LINQ and EDM for the future of the data programming platform which we think will create major improvements in programming against all types of data. But we are always re-evaluating our technology investments so if your readers want to ramp up their volume on XSLT 2.0 please ask them to drop us a line with their comments.

If you want to use XSLT/XPath 2.0 with .NET you could use Saxon.NET. However, this is just the Java version of Saxon running inside IKVM. It has a significant size in the range of 30 MB and when I tried it the performance did not seem overwhelming (This was a very basic test though so the result might be different with a typical stylesheet).

link|improve this answer
Yes. You're right. SAxon.NEt is REAAAAAALLY slow. – Jay Stevens May 6 '09 at 20:14
3  
This really sucks. We really need to start lobbying MS to get an XSLT 2.0 processor started! – Darrel Miller Jun 15 '09 at 18:15
1  
blogs.msdn.com/xmlteam/contact.aspx Write to them! – Alex Angas Jun 19 '09 at 13:07
I don't think they will very be implementing XSLT 2.0, unless they have changed their mind since 2004. They like XQuery. See: blogs.msdn.com/b/dareobasanjo/archive/2004/05/13/131166.aspx blogs.msdn.com/b/mfussell/archive/2004/05/13/130969.aspx – oillio Jun 8 '10 at 18:37
@Jay Stevens: Saxon.NET is slower than XslCompiledTransform, but still has good speed. – Max Toro Sep 7 '10 at 18:10
feedback

XQSharp now includes a full XSLT 2.0 implementation for .NET. It doesn't yet compile to MSIL, but that is in the pipeline.

link|improve this answer
XQSharp is a commercial product, for those that want to know. – Francois Botha Jan 31 '11 at 12:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.