Tools for debugging xslt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T06:03:55Z http://stackoverflow.com/feeds/question/218522 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/218522/tools-for-debugging-xslt 7 Tools for debugging xslt Sam Hoice 2008-10-20T13:57:18Z 2008-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#218546 1 Answer by Javier for Tools for debugging xslt Javier 2008-10-20T14:02:45Z 2008-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#218568 3 Answer by Pramod for Tools for debugging xslt Pramod 2008-10-20T14:08:35Z 2008-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#218632 0 Answer by Sam Hoice for Tools for debugging xslt Sam Hoice 2008-10-20T14:26:18Z 2008-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#218780 2 Answer by James Sulak for Tools for debugging xslt James Sulak 2008-10-20T15:15:20Z 2008-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#219829 0 Answer by Robert Rossney for Tools for debugging xslt Robert Rossney 2008-10-20T20:39:34Z 2008-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#225289 2 Answer by David Robbins for Tools for debugging xslt David Robbins 2008-10-22T11:13:27Z 2008-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#332939 1 Answer by Andy for Tools for debugging xslt Andy 2008-12-02T03:22:22Z 2008-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>