Listing 1

<?xml version="1.0" encoding="utf-8"?>
<!-- edited with XMLSPY v5 rel. 3 U (http://www.xmlspy.com) by Paul Ballard
(Progressive Casualty Insurance Company) -->
<SalesSummary>
	<Employee>
	    <ID>2</ID>
		<LastName>Fuller</LastName>
		<FirstName>Andrew</FirstName>
		<Employees>
			<Employee>
			    <ID>1</ID>
				<LastName>Davolio</LastName>
				<FirstName>Nancy</FirstName>
			</Employee>
			<Employee>
			    <ID>3</ID>
				<LastName>Leverlingy</LastName>
				<FirstName>Janet</FirstName>
			</Employee>
			<Employee>
			    <ID>4</ID>
				<LastName>Peacock</LastName>
				<FirstName>Margaret</FirstName>
			</Employee>
			<Employee>
			    <ID>5</ID>
				<LastName>Buchanan</LastName>
				<FirstName>Steve</FirstName>
				<Employees>
					<Employee>
					    <ID>6</ID>
						<LastName>Suyama</LastName>
						<FirstName>Michael</FirstName>
					</Employee>
					<Employee>
					    <ID>7</ID>
						<LastName>King</LastName>
						<FirstName>Robert</FirstName>
					</Employee>
					<Employee>
					    <ID>8</ID>
						<LastName>Callahan</LastName>
						<FirstName>Laura</FirstName>
					</Employee>
				</Employees>
			</Employee>
			<Employee>
			    <ID>9</ID>
				<LastName>Dodsworth</LastName>
				<FirstName>Anne</FirstName>
			</Employee>
		</Employees>
	</Employee>
</SalesSummary>

Listing 2

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="Employee">
		<xsl:element name="Employee">
			<xsl:attribute name="ID"><xsl:value-of
			select="ID"/></xsl:attribute>
			<xsl:attribute name="Name"><xsl:value-of
			select="FirstName"/><xsl:text> </xsl:text><xsl:value-of
			select="LastName"/></xsl:attribute>
		<xsl:apply-templates select="Employees/Employee" />
		</xsl:element>
	</xsl:template>
	<xsl:template match="*">
		<SalesStaff>
		<xsl:apply-templates/>
		</SalesStaff>
	</xsl:template>
</xsl:stylesheet>
  
Listing 3

<?xml version="1.0"?>
<siteMap>
   <siteMapNode title="Home" description="Home" url="Home.aspx" >
      <siteMapNode title="Sales" description="Northwind Sales Portal"
	   url="Default.aspx">
         <siteMapNode title="Sales Staff Page" description="Sales Staff Data"
		  url="OtherDataPage.aspx" />
         <siteMapNode title="Forecasts" description="Sales Forecasts"
		  url="Forecasts.aspx" />
         <siteMapNode title="Archives" description="Sales Archives"
		  url="Archives.aspx" />
      </siteMapNode>
      <siteMapNode title="IT" description="Northwind IT Portal" 
	   url="IT.aspx">
         <siteMapNode title="Web Services" description="Enterprise SOA
		 Development" url="SOA.aspx" />
         <siteMapNode title="Mainframe" description="Legacy Systems Maintenance"
		  url="MainFrame.aspx" />
         <siteMapNode title="Desktop" description="Desktop Development"
		  url="Desktop.aspx" />
      </siteMapNode>
   </siteMapNode>
</siteMap>