RE: [xsl] Processing input xml containing containing namespace switch

Subject: RE: [xsl] Processing input xml containing containing namespace switch
From: "Revill, D.J." <D.J.Revill@xxxxxx>
Date: Thu, 15 Jul 2004 11:40:49 +0200
Thanks David, your suggestion did the trick (and saved me much time). Logical
really...

Derek

> -----Original Message-----
> From: David Carlisle [mailto:davidc@xxxxxxxxx]
> Sent: donderdag 15 juli 2004 11:32
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Re: [xsl] Processing input xml containing containing
> namespace
> switch
>
>
> Your problem is nothing to do with the switch, you would have the same
> problem if you deleted the wrapper and had the osis element at the top
> level.
>
>
> 	<xsl:template match="osis">
>
> that matches an element in no namespace with local name osis
>
>    <osis
> xsi:schemaLocation="http://www.bibletechnologies.net/2003/OSIS
> /namespace osisCore.2.0.xsd"
>
> xmlns="http://www.bibletechnologies.net/2003/OSIS/namespace";
>
>
> is an element in namespace
> http://www.bibletechnologies.net/2003/OSIS/namespace with local name
> osis so it does not match the template.
>
> Add
>
> xmlns:o="http://www.bibletechnologies.net/2003/OSIS/namespace";
> to your xsl:stylesheet then use
>
> 	<xsl:template match="o:osis">
>
> David
>
> ______________________________________________________________
> __________
> This e-mail has been scanned for all viruses by Star Internet. The
> service is powered by MessageLabs. For more information on a proactive
> anti-virus service working around the clock, around the globe, visit:
> http://www.star.net.uk
> ______________________________________________________________
> __________

Current Thread