我对 WCF Web 服务的调用失败了System.Net.WebException: The request failed with HTTP status 413: Request Entity Too Large.
检查提琴手,我看到我正在发送:
内容长度:149839
超过 65KB。
在服务器上启用 WCF 跟踪,我看到:
System.ServiceModel.ProtocolException:已超出传入消息 (65536) 的最大消息大小配额。要增加配额,请在适当的绑定元素上使用 MaxReceivedMessageSize 属性。
添加此属性并不能解决问题。
我只尝试了该属性,并且(后来)尝试了帖子建议的其他各种属性。这是我目前拥有的(在服务器上):
<basicHttpBinding>
<binding name="PricerServiceSoap"
closeTimeout="00:10:00" openTimeout="00:10:00"
receiveTimeout="00:10:00" sendTimeout="00:10:00"
maxBufferSize="2147483647"
maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="2147483647"
maxNameTableCharCount="2147483647" />
</binding>
</basicHttpBinding>
我唯一的终点(下<client>
)是:
<endpoint address="/NetPricingService/Service.asmx"
binding="basicHttpBinding" bindingConfiguration="PricerServiceSoap"
contract="Pricing.PricerService.PricerServiceSoap"
name="PricerServiceSoap" />
我还添加了:
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
下<behavior>
。
我什至运行过(对于 IIS 7):
%windir%\system32\inetsrv\appcmd set config "WebServicesDev/PricingService"
-section:requestFiltering -requestLimits.maxAllowedContentLength:104857600
-commitpath:apphost
没有任何区别。
一个问题是这是一个 WCF 服务,旨在替换旧的 ASMX 服务。服务框架是使用现有 WSDL 中的 svcutil 生成的。我无法更改客户端配置(并且客户端使用多种语言)。我的测试客户端项目使用添加 Web 引用(在 下Add Service Reference / Advanced
)导入了服务,因此我没有 WCF 配置。但是,如果我将测试客户端指向较旧的 ASMX 服务,它就可以工作。
我该如何解决或诊断这个问题?
附加信息
如果我使用 Microsoft 服务配置编辑器生成配置(设置 maxReceivedMessageSize 和 maxBufferSize),它可以工作。问题是端点是在 下指定的<service>
,它不会让我指定 /NetPricingService/Service.asmx 相对地址。如果我在 svcutil 生成的配置(端点位于<client>
)中编辑绑定,则它不适用于大请求。