|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Converting XML to XML
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: 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 ________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








