RE: [xsl] Converting XML to XML

Subject: RE: [xsl] Converting XML to XML
From: "ChandraShekar, A" <ChandraShekar.A@xxxxxxxxxxx>
Date: Wed, 17 Aug 2005 17:44:24 +0530
Sorry. Code

Source XML:
	<PARAMETERS>
		<PARAMETER>
		</PARAMETER>
		<PARAMETER>
		</PARAMETER>
		<PARAMETER>
		</PARAMETER>
	</PARAMETERS>

My code:
	<xsl:template match="PARAMETERS">
		<FormMD>
			<xsl:for-each select="PARAMETER">
				<xsl:apply-templates select="PARAMETER">
				</xsl:apply-templates>
			</xsl:for-each>
		</FormMD>
	</xsl:template>
	<xsl:template match="PARAMETER">
		<Name>
		</Name>
	</xsl:template>

This is not working. Is there any problem in my code ?


-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Wednesday, August 17, 2005 5:39 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Converting XML to XML


	<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
________________________________________________________________________

Current Thread