How Do I ... : Web Services Tips, Hints and FAQs : How can I enable code page conversion of SOAP messages during serialization?
How can I enable code page conversion of SOAP messages during serialization?
Add an 'XmlDefaultEncoding' entry to the [Xml] stanza of your application's .ini file and set decodingEnabled to false in the AbtXmlConfiguration used by AbtXmlMappingParser.
[Xml]
DefaultResourceQualifier=D:\vast\b49\xml\
XmlDefaultEncoding=UTF-8
The value for this entry should be the target encoding for the serialized SOAP message. The VAST Web services support will always attempt to serialize SOAP messages using the specified encoding.
For less common encodings, it may be necessary to add a code page mapping using API in AbtXmlStreamConverter to map the specified encoding value to a valid code page supported by the platform. AbtXmlStreamConverter mapEncoding: 'UTF-8' toCodePage: 65001
-------------------------------
Last modified date: 04/08/2023