xsl-list
[Top] [All Lists]

[xsl] Removing xsi:noNamespaceSchemaLocation from resulting xml

2012-08-18 11:37:28

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



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


<Prev in Thread] Current Thread [Next in Thread>