[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Removing xsi:noNamespaceSchemaLocation from result

Subject: Re: Removing xsi:noNamespaceSchemaLocation from resulting xml
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Sat, 18 Aug 2012 18:48:22 +0200
Re:  Removing xsi:noNamespaceSchemaLocation from result
Philip Vallone wrote:

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="@* "/>

I would change above line to


<xsl:apply-templates select="@*" mode="copy"/>

<xsl:apply-templates select="*" mode="copy"/>

or combine the two to


<xsl:apply-templates select="@*, *" mode="copy"/>
	</xsl:copy >
</xsl:template>

and then add


<xsl:template match="dm/@xsi:noNamespaceSchemaLocation" mode="copy"/>



--

	Martin Honnen --- MVP Data Platform Development
	http://msmvps.com/blogs/martin_honnen/

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.