Subject: Re: Converting XML to XML
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 17 Aug 2005 13:08:34 +0100
|
<xsl:template match="PARAMETERS">
Your posted input did not have any elements called PARAMETERS (it has
one called parameters)
<xsl:for-each select="PARAMETER">
<xsl:apply-templates select="PARAMETER">
</xsl:apply-templates>
</xsl:for-each>
Similarly it has an element called PARAMETER but here if you changed ths
to say
<xsl:for-each select="parameter">
<xsl:apply-templates select="parameter">
</xsl:apply-templates>
</xsl:for-each>
Then it would iterate ove each parameter element and then apply
templates to that elements parameter children, but in your posted input
parameter elements do not have parameter children. i suspect you want
<xsl:apply-templates select="parameter">
and no for-each at all.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________
|