gpt4 book ai didi

visual-studio-2010 - mscorlib.dll 中发生了 'System.ServiceModel.CommunicationException' 类型的未处理异常

转载 作者:行者123 更新时间:2023-12-04 23:22:03 26 4
gpt4 key购买 nike

在不是我开发的 Web 服务中调用方法时出现以下错误。

An unhandled exception of type 'System.ServiceModel.CommunicationException' occurred in mscorlib.dll



它不仅发生在我的本地开发机器上,而且在部署软件时也发生在客户端的服务器上。

我目前正在使用 Visual Studio 2010。

最佳答案

捕获 CommunicationException 并查看 InnerException 后,我发现以下详细信息: 已超出传入消息的最大消息大小配额 (65536)。要增加配额,请在适当的绑定(bind)元素上使用 MaxReceivedMessageSize 属性。
此问题的解决方案是将以下内容添加到我的配置文件中。

<bindings>
<basicHttpBinding>
<binding name="R2MSBulkUploadSoap" allowCookies="true"
maxReceivedMessageSize="20000000"
maxBufferSize="20000000"
maxBufferPoolSize="20000000">
<readerQuotas maxDepth="32"
maxArrayLength="200000000"
maxStringContentLength="200000000"/>
</binding>
</basicHttpBinding>
</bindings>

我从 here 找到了这个解决方案

关于visual-studio-2010 - mscorlib.dll 中发生了 'System.ServiceModel.CommunicationException' 类型的未处理异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21699039/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com