Hello.
When creating an XML during a transformation is it possible to query (XPath) the document as it's being built?
For example I have a template that can create an unknown number of elements with an unknown number of attributes, so is it possible to find out how may elements were created after the template has finished?
Code:
<xsl:template name="root">
<xsl:call-template name="create-unknown-number-of-elements-template" />
<xsl:call-template name="count-number-of-elements-created-above" />
</xsl:template>
Or am I wasting my time?
--
Bill