Re: [xsl] how to prevent adding xmlns attribute

Subject: Re: [xsl] how to prevent adding xmlns attribute
From: "M. David Peterson" <m.david@xxxxxxxxxx>
Date: Thu, 11 Nov 2004 07:14:39 -0800
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:exsl="http://exslt.org/common"; version="1.0" exclude-result-prefixes="exsl">



Dusan Zatkovsky wrote:

Hi.

I have one question:

xml:
-----
<root>
	<lama/>
</root>


xsl:
-----
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:exsl="http://exslt.org/common"; version="1.0">
<xsl:output method="xml"/>


	<xsl:variable name="dataVar">
		<root>
			<data>123456</data>
		</root>
	</xsl:variable>

<xsl:template match="/"><xsl:apply-templates></xsl:template>

	<xsl:template match="lama">
		<lama>
			<xsl:value-of select="exsl:node-set($dataVar)/root/data"/>
		</lama>
	</xsl:template>

</xsl:stylesheet>


output: ------- <lama xmlns:exsl="http://exslt.org/common";>12345</lama>


I need to remove namespace from 'lama' tag: <lama>12345</lama>

How to do this?

I am using XalanC.

Thanks.

Current Thread