Re: [xsl] Can xsl:iterate be used in stream-processing?

Subject: Re: [xsl] Can xsl:iterate be used in stream-processing?
From: "Costello, Roger L. costello@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 17 Sep 2014 11:23:24 -0000
Michael Kay wrote:

> It's complaining about a context item expression (.) not about xsl:iterate

Oops!

You are absolutely right.

I did this:

	<xsl:variable name="title" select="." />

when I should have done this:

	<xsl:variable name="title" select="copy-of(.)" />

Upon doing so, my XSLT program works great.

Thanks Michael.

/Roger

Current Thread