Does anyone know how to define the <Document> tag in the stylesheet when it comes with the attribute <Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.054.001.08">.
I only manage to do it when I only leave the <Document> tag, when I add the attribute it returns this error
Error: 20[0] - in function: GetRootNode
Currently in the stylesheet, I have only implemented this
<xsl:template match="Document">
<xsl:element name="Docume54">
<xsl:value-of select="."/>
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>