Member since
07-29-2021
1
Post
0
Kudos Received
0
Solutions
07-29-2021
06:13 AM
Maybe a TransformXml with this XSLT might be more future proof: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()">
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
... View more