Subject: Re: Processing input xml containing containing namespace switch
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 15 Jul 2004 10:32:00 +0100
|
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
________________________________________________________________________
|