xsl-list
[Top] [All Lists]

Re: Converting XML to XML

2005-08-17 05:08:34

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



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