vote up 2 vote down star
2

Hi guys,

I'm a LAMP web developer in Perl and at my current place we use some black magic in using Perl to retrieve the data, throw them into a XML and then pass the XML to an XSL file. And this is all handled magically by the almighty AxKit. Thus you can probably imagine that my XSL is full of XSLT lines, i.e. if test,@value etc.

I was wondering if there's any tool, IDE, etc which I can use to open the XSL file and check the HTML preview without having to modify anything in my current XSL?

I'm open for suggestions as long as it gets the job done. Thanks.

flag

@melaos: The topxml.com site was fatally broken and has been in this state for long. XPV for IE: stackoverflow.com/questions/511942/… XPV for Mozilla: topxml.com/code/… – Dimitre Novatchev Feb 5 at 6:49

7 Answers

vote up 5 vote down check

XSLT IDEs (Interactive Development Environments):

  • XSelerator (the one I've been using for 6-7 years). Free, has a Debugger for MSXML, has intellisense for both XSLT 1.0 and XSLT 2.0. In addition has some dynamic intellisense. The debugger has breakpoints, data breakpoints,visualizes temporary trees, variables, test conditions, current output, ..., etc.
  • VS2008 -- a good XML Editor + XSLT Debugger. Good static intellisence. Match patterns are statically checked. Breakpoints, data breakpoints, visualization of variables and the current output.
  • oXygen
  • XML-SPY (Altova)
  • Stylus Studio

XPath tools:

  • The XPath Visualizer -- A popular tool for learning XPath by playing with XPath expressions. Free and open source. Allows any XPath expression to be evaluated against a given XML document and displayes the results hi-lighted in the xml document (if they are node(s)) or in a separate box (if the results are atomic values). Allows xsl:variable-s to be defined and then used in XPath expressions. Allows xsl:key-s to be defined and then referenced by key() functions within XPath expressions.
link|flag
wow, sounds awesome and definitely can't beat the price. thanks :) – melaos Feb 4 at 14:33
@Dimitre Btw i can't seem to find anything from your XPath Visualizer link. Can you check? thanks. – melaos Feb 5 at 3:21
The topxml.com site was almost fatally broken and has been in this state for long. XPV for IE: stackoverflow.com/questions/511942/… XPV for Mozilla: topxml.com/code/… – Dimitre Novatchev Feb 5 at 6:49
Does XSelerator works on Vista? It think work here :( – Daniel Silveira May 9 at 2:01
1  
@Daniel-Silveira Yes, it works OK, must be started as administrator. – Dimitre Novatchev May 9 at 14:28
show 6 more comments
vote up 1 vote down

I am currently using Visual Studio, open your xml file within visual studio, from XML menu click show xslt output.

link|flag
@Bashar any specific version? all i can find is vs2003 here. thanks. – melaos Feb 4 at 9:48
No, this is in Visual Studio 2005 and above – Bashar Kokash Feb 4 at 9:59
@melaos: VS2008 Express is free: microsoft.com/express. – John Saunders Jun 23 at 22:24
vote up 2 vote down

I found Stylus Studio to be an invaluable tool for all my XML needs. I never ran it rough Wine though.

link|flag
wow, seems like a little overkill but i'm going to check it out. thanks :) – melaos Feb 4 at 9:50
vote up 1 vote down

I use cooktop which is free.

link|flag
me too (though it is buggy and unsupported) – annakata Feb 4 at 14:08
vote up 0 vote down

Try Microsoft XML Notepad

link|flag
vote up 0 vote down

A couple of alternatives that haven't been mentioned, yet:

  • XML Copy Editor - Okay, but requires an intermediate step to generate HTML and then open HTML in an external browser.
  • WMHelp XMLPad - Many minor bugs and annoyances, but otherwise very useful: can review and debug transformations within the IDE.

I wrote a post describing these and a couple of other tools, in case someone is interested: How to test XSL transformations.

link|flag
vote up 0 vote down

I'm using Visual Web Developer 2008 Express Edition...under my XML menu all I see is "Schemas..." when I have an XSL file open. Did I miss installing a component for the other options?

link|flag

Your Answer

Get an OpenID
or

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