Click here to Skip to main content
15,884,838 members
Articles / Programming Languages / XSLT

Debugging XML Transforms (XSLT) with Visual Studio

Rate me:
Please Sign up or sign in to vote.
4.69/5 (12 votes)
26 Feb 2011CPOL3 min read 85K   24   15
 XSLT stands for Extensible Stylesheet Language Transformations.There is so much to learn in our technical world… and so little time….and for some of us, even fewer brain cells. Alas, such is the life of a nerd/dweeb/geek.The latest technology I spent brain cells on is XML Transforms.

XSLT stands for Extensible Stylesheet Language Transformations.

[Update/Note] This post describes the XSLT debugger which is only available
in the Professional and Team System versions of Visual Studio.

There is so much to learn in our technical world… and so little time….and for some of us, even fewer brain cells. Alas, such is the life of a nerd/dweeb/geek.

The latest technology I spent brain cells on is XML Transforms. You've probably seen these mysterious little files with the XSLT extensions that do magically wondrous things to XML files.

For traditional developers, XSLT is weird because it's not a traditional procedural language: "Do A, if successful then do B". XSLT uses "templates" with XPATH to select a group of nodes and then formats the selected nodes in the template body. To delve deeper into the document, XSLT uses sub-templates in a recursive tree-like fashion. However, these sub-templates are disjointed hunks of text in the XSLT document so it's difficult to visually comprehend what is going on…at least to an untrained eye.

This post isn't going to explain how XSLT transforms work—it's going to explain how to run them under the Visual Studio Debugger and watch them do their magic. FYI: I only tried this with VS 2008.

For more information on XSLT, go to the WC3 website here.

Here is the XML input file we are going to work with:

XML
<?xml version="1.0" standalone="yes"?> 
<Golfers> 
  <Golfer> 
    <ID>1</ID> 
    <Name>Bobby Jones</Name> 
    <Birthday>1902-03-17</Birthday> 
  </Golfer> 
  <Golfer> 
    <ID>2</ID> 
    <Name>Sam Snead</Name> 
    <Birthday>1912-05-27</Birthday> 
  </Golfer> 
  <Golfer> 
    <ID>3</ID> 
    <Name>Tiger Woods</Name> 
    <Birthday>1975-12-30</Birthday> 
  </Golfer>
</Golfers> 

Here is the XSLT file we are going to transform it with:

XML
<?xml version="1.0" encoding="UTF-8"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 
<xsl:output method="xml" indent="yes"/> 
<xsl:template match="/Golfers"> 
  <Golfers> 
    <xsl:apply-templates select="Golfer"/> 
  </Golfers> 
</xsl:template> 
<xsl:template match="Golfer"> 
  <xsl:element name="Golfer"> 
    <xsl:attribute name="ID" > 
      <xsl:value-of select="ID"/> 
    </xsl:attribute> 
    <xsl:attribute name="Name" > 
      <xsl:value-of select="Name"/> 
    </xsl:attribute> 
    <xsl:attribute name="Birthday" > 
      <xsl:value-of select="Birthday"/> 
    </xsl:attribute> 
  </xsl:element> 
</xsl:template> 
</xsl:stylesheet> 

The transform file will turn the XML elements into attributes. Why? Because the .Net DataSet/DataTable class seems to prefer XML attributes when reading XML files. And, because after studying XML for a long time, I've come to prefer sub-elements when there is a one-to-many relationship and to prefer attributes when there one-to-one relationship between the elements.

To start, first open up the XSLT file in Visual Studio:

The XML tool bar should appear:

If it doesn't appear, right click on the toolbar area and turn it on:

Put a breakpoint in the XSLT file (F9 or use the mouse or use the Debug menu):

Click the Debug XSLT button:

The first time you run it, an open file dialog will prompt you: "Choose Input XML Document"

Note: Subsequently when you run it, the input file will open automatically*.

The standard Debug toolbar will appear. With the toolbar you can start stepping through the transform code. Two synchronized windows will be open:

In the image above, I've clicked 'step' several times. You can see in the right window that the second XML node is being processed.

If you go to the Debug menu and select Locals, you can get more information about what is happening:

You can do watches and other debugging things while the code is paused. You can see the output file being built in the window behind the input XML window.

When it's all done the new XML file will look like this:

XML
<?xml version="1.0" encoding="utf-8"?> 
<Golfers> 
  <Golfer ID="1" Name="Bobby Jones" Birthday="1902-03-17" /> 
  <Golfer ID="2" Name="Sam Snead" Birthday="1912-05-27" /> 
  <Golfer ID="3" Name="Tiger Woods" Birthday="1975-12-30" /> 
</Golfers> 

As my Canadian friends would say: "That's pretty cool, eh?"

*To override the automatic opening of the XML input file, right click the XSLT file and select properties. You can edit the input and output file paths and names:

That's it. Who knew the Microsoft boys and girls would go to such depths to provide such a powerful tool. It was a pleasant discovery.

I hope someone finds this useful.

This article was originally posted at http://weblogs.asp.net/stevewellens/privaterss.aspx

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
EndWell Software, Inc.
United States United States
I am an independent contractor/consultant working in the Twin Cities area in Minnesota. I work in .Net, Asp.Net, C#, C++, XML, SQL, Windows Forms, HTML, CSS, etc., etc., etc.

Comments and Discussions

 
Questionnot working with Community version of Visual Studio Pin
bujuu2-Aug-17 2:36
bujuu2-Aug-17 2:36 
GeneralUsing Visual Studio 2012 to debug xslt Pin
Member 1051743530-Mar-14 16:53
Member 1051743530-Mar-14 16:53 
GeneralMy vote of 4 Pin
Juan TF21-Aug-12 0:47
Juan TF21-Aug-12 0:47 
QuestionExcellent notes and illustrations Pin
ab17798-Sep-11 9:12
ab17798-Sep-11 9:12 
GeneralMy vote of 3 Pin
hemant000528-Feb-11 18:50
hemant000528-Feb-11 18:50 
GeneralMy vote of 5 Pin
L Hills25-Feb-11 3:38
L Hills25-Feb-11 3:38 
GeneralOutstanding walk-through, thanks Pin
Are Jay14-Jan-10 18:34
Are Jay14-Jan-10 18:34 
GeneralRe: Outstanding walk-through, thanks Pin
Steve Wellens15-Jan-10 3:41
Steve Wellens15-Jan-10 3:41 
QuestionGreat explanation Pin
Green_Ash31-Dec-09 11:34
Green_Ash31-Dec-09 11:34 
I am trying to debug an xslt file from an application. The application uses the following call:

xsltFile.Load(TemplateFilePath+ "\\AppSendImport.xslt");

When I am at this line, I hit F11 (I have already loaded the xslt file in VS). The code is executed without stopping at the breakpoint. Of course when I try to set the breakpoint, it says that the symbols are not loaded. So, I didn't expect the breakpoint to work. What do I need to do to load the symbols and make breakpoint work?

Thanks so much

Ash
AnswerRe: Great explanation Pin
Steve Wellens31-Dec-09 11:47
Steve Wellens31-Dec-09 11:47 
GeneralMy vote of 1 Pin
winheart26-Oct-09 1:02
winheart26-Oct-09 1:02 
QuestionNot able to find XML editor in tool bar context menu. Pin
winheart26-Oct-09 1:01
winheart26-Oct-09 1:01 
AnswerRe: Not able to find XML editor in tool bar context menu. [modified] Pin
Steve Wellens26-Oct-09 4:00
Steve Wellens26-Oct-09 4:00 
GeneralGreat 'hidden' feature Pin
Member 89362125-Oct-09 23:05
Member 89362125-Oct-09 23:05 
QuestionGreat, who knew? Pin
Rick Hansen8-Sep-09 5:11
Rick Hansen8-Sep-09 5:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.