[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Removing namespaces


Subject: Re: [xsl] Removing namespaces
From: Marcus Andersson <marcus@xxxxxxxxxx>
Date: Thu, 06 May 2004 22:05:26 +0200

Thank you very much. That helped!

/Marcus

Andreas L. Delmelle wrote:

-----Original Message-----
From: Marcus Andersson [mailto:marcus@xxxxxxxxxx]

For some reason I get two namespaces in my output that isn't wanted at all (since they cause the result not to validate). The namespaces are:



Hi,

You need:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:db="urn:#MyHelperToGetData"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"

exclude-result-prefixes="db msxsl">


HTH!

Andreas


Current Thread