我已经在ASp .net C#中创建了一个RESTful POST Web服务,其中IIS托管了该服务。
我的服务接受XML文件作为输入,当大小超过65KB时,我收到以下错误消息:
远程服务器返回错误:(400)错误请求。
我的问题是双重问题,首先是IIS服务器为POST请求设置了默认限制,其次是如何更新此问题?
非常感谢
答案 0 :(得分:12)
JohnKällén的答案是正确的,但在我的情况下我定义了一个终点,所以设置maxReceivedMessageSize必须如下:
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name=""
helpEnabled="true"
automaticFormatSelectionEnabled="true"
maxReceivedMessageSize="2147483647">
</standardEndpoint>
</webHttpEndpoint>
</standardEndpoints>
答案 1 :(得分:11)
您是否尝试将以下内容添加到web.config?
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1000000" />
</requestFiltering>
</security>
<system.webServer>
这会将允许的内容长度提升至兆字节。此外,您可能希望将WCF绑定的maxReceivedMessageSize属性设置为超过默认的64k:
<webHttpBinding>
<binding name="MessageSizeWeb" maxReceivedMessageSize="2147483647" />
</webHttpBinding>