Re: [xsl] xmlns="" added to output

Subject: Re: [xsl] xmlns="" added to output
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 28 Jun 2011 20:33:23 +0100
On 28/06/2011 19:48, Thomas, Jackie R Jr CTR USAF AFMC ESC/HGGI wrote:
<xsl:template match="*"><xsl:copy><xsl:apply-templates/></xsl:copy></xsl:template>

presumably you are copying elements in no-namespace into your result document and you want the result to be in a namespace so you don't want to copy you need to generate new nodes with different names from the source.


so not

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

but

<xsl:template match="*"><xsl:element name="{local-name()}"><xsl:apply-templates/></xsl:element></xsl:template>

which takes elements from the source and generates elements with the same local name but in the default namespace of the stylesheet..

David

Current Thread