Tools for debugging xslt - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T06:03:55Zhttp://stackoverflow.com/feeds/question/218522http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218522/tools-for-debugging-xslt7Tools for debugging xsltSam Hoice2008-10-20T13:57:18Z2008-12-02T03:22:22Z
<p>I have a Java servlet which generates xml, translates it with an xslt stylesheet, and then displays the resulting HTML. This is the first time I've worked with xslt. What's a good way to debug xslt? I have (or can get) some sample XML files to apply the transform too. But I'm not really even sure of the syntax so something that would give me syntax warnings would be great.</p>
http://stackoverflow.com/questions/218522/tools-for-debugging-xslt/218546#2185461Answer by Javier for Tools for debugging xsltJavier2008-10-20T14:02:45Z2008-10-20T14:02:45Z<p>when learning, a syntax highlighting editor is usually enough for me (of course with the ref doc open on another window.</p>
<p>Kate is a great editor for XML and XSLT.</p>
http://stackoverflow.com/questions/218522/tools-for-debugging-xslt/218568#2185683Answer by Pramod for Tools for debugging xsltPramod2008-10-20T14:08:35Z2008-10-20T14:08:35Z<p>I once had to write and debug some complex XSLT documents. At the time I used debugged "printf-style" by outputting a lot of intermediate values. I later found out that there is a much easier way to do this - Altova XMLSpy. It allows you to single-step through the style-application process, watch intermediate output, etc. etc. </p>
<p>VS8 also has XSLT debugging support. See here: <a href="http://msdn.microsoft.com/en-us/library/ms255605" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms255605</a>(VS.80).aspx</p>
<p>I should also mention that both XMLSpy and VS8 have syntax highlighting as well. If you specify a XSD in your XML, VS8 even gives you intellisense!</p>
http://stackoverflow.com/questions/218522/tools-for-debugging-xslt/218632#2186320Answer by Sam Hoice for Tools for debugging xsltSam Hoice2008-10-20T14:26:18Z2008-10-20T14:26:18Z<p>As I've been searching for an answer, I've come across a tool called <a href="http://xml.apache.org/xalan-j/" rel="nofollow">Xalan</a>. Has anyone had any experience with it? It appears at first blush to do what I want.</p>
http://stackoverflow.com/questions/218522/tools-for-debugging-xslt/218780#2187802Answer by James Sulak for Tools for debugging xsltJames Sulak2008-10-20T15:15:20Z2008-10-20T15:15:20Z<p>Xalan should give you useful errors when you try to use an invalid XSLT. If you want something more powerful, one option for debugging XSLT is <a href="http://www.oxygenxml.com/" rel="nofollow">Oxygen XML Editor</a>. It is integrated with Xalan and Saxon transform engines. Its debugging mode allows you to set breakpoints, watch variables, and provides other such basic debugging functionality. It may be overkill for you want, but it's very good.</p>
http://stackoverflow.com/questions/218522/tools-for-debugging-xslt/219829#2198290Answer by Robert Rossney for Tools for debugging xsltRobert Rossney2008-10-20T20:39:34Z2008-10-20T20:39:34Z<p>I work with XSLT nearly every day, and have for six or seven years.</p>
<p>I've found that "printf-style" debugging of XSLT is so effective that I've never derived a benefit from using any other debugging mechanism (and I've tried XMLSpy and Visual Studio). It does sometimes happen that I want to be able to inspect the value of a variable and building logic that outputs it is a hassle. But that's pretty rare. </p>
<p>It may be that having a debugger would have made <em>learning</em> XSLT easier. (Anything would have.)</p>
http://stackoverflow.com/questions/218522/tools-for-debugging-xslt/225289#2252892Answer by David Robbins for Tools for debugging xsltDavid Robbins2008-10-22T11:13:27Z2008-10-22T11:13:27Z<p><a href="http://www.marrowsoft.co.uk/" rel="nofollow">Xselerator</a> is s great XSL debugging tool that will:</p>
<ul>
<li>Let you step through your XSLT dom</li>
<li>Create watch statements</li>
<li>Evaluate XPath statements against you XML DOM</li>
<li>IDE with Intellisense</li>
</ul>
<p>I've used this for years and it is a great tool.</p>
http://stackoverflow.com/questions/218522/tools-for-debugging-xslt/332939#3329391Answer by Andy for Tools for debugging xsltAndy2008-12-02T03:22:22Z2008-12-02T03:22:22Z<p>I use Cooktop which is pretty good, nice and simple :</p>
<p><a href="http://www.xmlcooktop.com/" rel="nofollow">http://www.xmlcooktop.com/</a></p>