Converting XSLT 1.0 to XSLT 2.0 - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:00:10Zhttp://stackoverflow.com/feeds/question/1072360http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1072360/converting-xslt-1-0-to-xslt-2-01Converting XSLT 1.0 to XSLT 2.0Viet2009-07-02T03:41:47Z2009-07-13T09:08:04Z
<p>I have a XSLT 1.0 file to transform a XML file using XSLT 1.0. It works fine with IE 6.0, Firefox 3.0.11. However, PHP 5.2.6 XSL XSLTProcessor (providing XSLT 1.0) and Qt C++ QXmlQuery (providing only XSLT 2.0) give blank output.</p>
<p>I'm thinking of 2 ways:</p>
<ol>
<li><p>Convert it to XSLT 2.0</p></li>
<li><p>Extract Firefox part to parse.</p></li>
</ol>
<p>I prefer the 1st one. Please kindly advise how can I do it. The W3C specs seem to long for me to digest and the documents to transform are not that large. Thank you in advance!</p>
http://stackoverflow.com/questions/1072360/converting-xslt-1-0-to-xslt-2-0/1072421#10724211Answer by ykaganovich for Converting XSLT 1.0 to XSLT 2.0ykaganovich2009-07-02T04:04:43Z2009-07-02T04:15:42Z<p>If the whole spec is too long (???), start with the <a href="http://www.w3.org/TR/xslt20/#changes" rel="nofollow">Changes</a> section.</p>
<p>Also, XSLTProcessor is just a wrapper round libxslt, and unlikely to break on a valid XSLT 1.0 transform. I wonder if there is something funky about your transformation that you can fix without going to 2.0, or if there's something wrong with your XSLTProcessor deployment. Can you successfully apply other transformations?</p>
http://stackoverflow.com/questions/1072360/converting-xslt-1-0-to-xslt-2-0/1091562#10915621Answer by samjudson for Converting XSLT 1.0 to XSLT 2.0samjudson2009-07-07T10:32:28Z2009-07-07T10:32:28Z<p>XSLT should be pretty much backward compatibly, although obviously there are things you can use in XSLT 2.0 that make life much easier.</p>
<p>It sounds like you have something wrong in your XSLT, but as you don't provide anything for us to look at it is hard to say.</p>
<p>I would recommend getting hold of Kernow-for-Saxon - it is a great UI for testing XSLT (much better than trying to use Firefox or IE) and if you have errors in your XSLT then Saxon is one of the better XSLT processors for giving good errors to try to identify the cause.</p>
<p><a href="http://kernowforsaxon.sourceforge.net/" rel="nofollow">http://kernowforsaxon.sourceforge.net/</a></p>
<p>I don't know anything about either the PHP or Qt processors, but it is possible there are errors in them that are not handling your XSLT correctly.</p>
http://stackoverflow.com/questions/1072360/converting-xslt-1-0-to-xslt-2-0/1118348#11183480Answer by Viet for Converting XSLT 1.0 to XSLT 2.0Viet2009-07-13T08:50:00Z2009-07-13T09:08:04Z<p>After much of hardwork and painful testing, I found the answer myself:</p>
<ol>
<li>A valid XSLT 1.0 file is also a valid XSLT 1.0 file</li>
<li>PHP and Qt C++ failed as I had <code><html xslmn="..."></code> instead of just <code><html></code> (which IE & FF were able to transform successfully). For simplicity, I removed <code><!DOCTYPE</code> and <code><attributes</code> of the <code><html></code> tag.</li>
</ol>
<p>Thanks everyone for participating in the discussion.</p>