【发布时间】:2020-08-20 02:35:12
【问题描述】:
我正在尝试使用 VS 2019、.net core 3 连接到编码 ISO-8859-1 的外部 Web 服务(该 Web 服务具有 PHP 实现)。我添加了 Connected Service。当使用编码创建新的基本 http 绑定时,我收到异常消息“不支持文本消息格式中使用的文本编码 'iso-8859-1'。(参数'编码')”。
***var binding = new BasicHttpBinding(BasicHttpSecurityMode.Transport)
{
MaxReceivedMessageSize = int.MaxValue,
MaxBufferPoolSize = int.MaxValue,
MaxBufferSize = int.MaxValue,
ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max,
AllowCookies = true,
TextEncoding = Encoding.GetEncoding("ISO-8859-1"),
};***
我的错误是什么?
【问题讨论】:
标签: wcf encoding iso-8859-1 basichttpbinding