Subject: Removing xsi:noNamespaceSchemaLocation from resulting xml
From: Philip Vallone <philip.vallone@xxxxxxxxxxx>
Date: Sat, 18 Aug 2012 12:37:06 -0400
|
Hi List,
I have stylesheet that is combining multiple files into one file. Each file
has a root called 'dm' which has a reference to a schema location. When I copy
the root nodes and all its children into my resulting xml file, I am stripping
the namespace (if any). My question is; how do I not copy the Schema location
(xsi:noNamespaceSchemaLocation)?
<xsl:template match="dm" mode="copy">
<xsl:copy >
<xsl:copy-of select="@* "/>
<xsl:apply-templates select="*" mode="copy"/>
</xsl:copy >
</xsl:template>
Thanks
Phil
|