Click here to Skip to main content
6,822,613 members and growing! (18,912 online)
Email Password   helpLost your password?
License: The Code Project Open License (CPOL)

Debugging XML Transforms (XSLT) with Visual Studio

By Steve Wellens

 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. You've pr
XML, XSLT, Windows, .NET, Visual-Studio
Revision:6 (See All)
Posted:1 Sep 2009
Updated:1 Sep 2009
Views:6,413
Bookmarked:11 times
Technical Blog
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
5 votes for this technical blog.
Popularity: 2.80 Rating: 4.00 out of 5
1 vote, 20.0%
1

2

3
1 vote, 20.0%
4
3 votes, 60.0%
5

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. 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 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 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 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.

License

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

About the Author

Steve Wellens


Member
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.
Company: EndWell Software, Inc.
Location: United States United States

Other popular XML articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 9 of 9 (Total in Forum: 9) (Refresh)FirstPrevNext
GeneralOutstanding walk-through, thanks PinmemberAre Jay19:34 14 Jan '10  
GeneralRe: Outstanding walk-through, thanks PinassociateSteve Wellens4:41 15 Jan '10  
QuestionGreat explanation PinmemberGreen_Ash12:34 31 Dec '09  
AnswerRe: Great explanation PinassociateSteve Wellens12:47 31 Dec '09  
GeneralMy vote of 1 Pinmemberwinheart2:02 26 Oct '09  
QuestionNot able to find XML editor in tool bar context menu. Pinmemberwinheart2:01 26 Oct '09  
AnswerRe: Not able to find XML editor in tool bar context menu. [modified] PinassociateSteve Wellens5:00 26 Oct '09  
GeneralGreat 'hidden' feature PinmemberMember 8936210:05 26 Oct '09  
GeneralGreat, who knew? PinmemberRick Hansen6:11 8 Sep '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

PermaLink | Privacy | Terms of Use
Last Updated: 1 Sep 2009
Editor: Chris Maunder
Copyright 2009 by Steve Wellens
Everything else Copyright © CodeProject, 1999-2010
Web17 | Advertise on the Code Project