1<?xml version='1.0' encoding="ISO-8859-1"?>
2
3<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5<xsl:output method="xml"
6            version="1.0"
7	    encoding="ISO-8859-1"
8	    indent="yes" />
9	    
10<xsl:template match="/">
11   <namespace>
12   <xsl:value-of select="//namespace::*"/>
13   </namespace>
14</xsl:template>
15
16</xsl:stylesheet>
17