[Home] [By Thread] [By Date] [Recent Entries]
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
|

Cart



