在wcf中请求实体太大的错误消息

时间:2013-12-03 12:35:46

标签: asp.net wcf

发送大小为1-2MB的字节时出现以下错误。

远程服务器返回意外响应:(413)请求实体太大

这是我的代码

客户端web.config:

    <system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IRLSSplitterService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" allowCookies="false" bypassProxyOnLocal="false" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" transferMode="Buffered" useDefaultWebProxy="true" >
                <readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
            </binding>
        </basicHttpBinding>
    </bindings>

这里我定义了缓冲区的最大范围。 请建议我是否遗漏任何配置内容。

0 个答案:

没有答案