This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: XSL puzzle


> Pl. help me find why the xsl would not work for the given xml.
> Thanks.
>
> <xslt:template match="customer">
 <!-- lots of stuff -->
>    <!-- File Systems for the customer -->
>
>    <!-- More (nested) File systems -->
>    <xslt:apply-templates select="/customer/filesystem"/>
>
>    <!-- More (nested) Customers
>    <xslt:apply-templates select="/customer"/>
>    -->
>    <!-- More Customers -->
>    <xsl:apply-templates />
>
>    <xslt:text>&#xA; </xslt:text>
>
> </xslt:template>
>

Well that looks like an infinite recursion to me. While processing any
customer, you are asking it to process the top-level customer ("/customer").
The comment suggests that you really want "select='customer'"

Mike Kay
Software AG


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]