Hi Experts,
Issue is regarding the change in encoding to "CP1252".
1) We are having special characters in our payload which were not read by UTF-8 so it was failing in mapping. After we changed the same to CP1252 using below XSL code it worked fine and passed through the system.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="cp1252"/>
<xsl:template match="/">
<xsl:copy-of select="*"/>
</xsl:template>
</xsl:stylesheet>
It worked fine after using XSL map.
2) In Configuration, we have an option of character set(ISO-8815-15 or UTF-8) but its not working when we are using, For what this option is being used? I am not sure what gets changed if we are using this in AS2 Channel?
3) XML Anonymizer bean is not working with AS2 adapter, its showing UTF-8 in the mapping. I think B2B doesn't support this bean.
Please suggest an alternative to XSLT and Java mapping, as client requirement is that they want to have only graphical mapping and no other mapping is to be used.
Thanks!
Regards,
Nidhi