<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:sp1="http://www.dummy.com/spaceA"
    xmlns:sp2="http://www.dummy.com/spaceB" >
<xsl:output method="html" indent="yes" />

<xsl:template match="/">
   <html> <head>
   <title> Namespace Fun and Frolic #1 </title>
     </head> <body>
     <xsl:for-each select="//sp1:item" >
          <xsl:value-of select="." />
    </xsl:for-each>
    </body> </html>
</xsl:template>
</xsl:stylesheet>

