Source:
<Data>
<heading xmlns="Some Uri">
<text>aaa</text>
</heading>
<Data>
XSLT wrote
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:link1="Some Uri">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="Data">
<xsl:value-of select="link1:heading/namespace-uri()"/>
</xsl:template>
</xsl:stylesheet>
I am getting error.
Can any one help how to do get the namespace.
Thank you.