Search found 1 match
- Fri Nov 14, 2025 10:41 pm
- Forum: Flows
- Topic: Extracting data from xml
- Replies: 9
- Views: 13169
Re: Extracting data from xml
It usually means there’s either a missing closing tag somewhere before the <xsl:template> ends, or an extra character that breaks the structure. XSLT is really strict one unclosed <xsl:if>, <xsl:for-each>, or even a stray > can cause the parser to think the </xsl:template> never appears. A good way ...