xsl-list
[Top] [All Lists]

RE: Converting XML to XML

2005-08-17 05:14:24
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(_at_)nag(_dot_)co(_dot_)uk] 
Sent: Wednesday, August 17, 2005 5:39 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>