
Guys
I'm making changes to the SEPA credit transfer stylesheet and have the following issue which I'm having problems with.
The bank i'm dealing with are demanding that the following be changed <?xml version="1.0" encoding="utf-8"?>
The utf contained in this must be in capital letters as per the below
<?xml version="1.0" encoding="UTF-8"?>
When I manually make the switch utf-8 to uppercase UTF-8, the file passes their validation test.
Does anyone have any ideas please?
thanks
Shaun
*This post is locked for comments
I have the same question (0)Further to this, and just to clarify, I have emended the utf-8 text to be uppercase in the .xsl stylesheet, and also in the TruncateTags.xsl stylesheet.
If i prevent the truncateTags transformation, utf is indeed uppercase.
This is the content of the truncatetag.xsl
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="www.w3.org/.../Transform"
xmlns:wt="schemas.microsoft.com/.../Message"
xmlns:s1="schemas.microsoft.com/.../VendPayments"
version="1.0">
<xsl:output method="xml"
indent="yes"
omit-xml-declaration="no" />
<!--Copy all nodes from source-->
<xsl:template match="/">
<xsl:copy-of select="wt:Envelope/wt:Body/wt:MessageParts/*" />
</xsl:template>
</xsl:stylesheet>