我有WCF服務,我有一個方法,當我想通過參數大字符串(超過1MB)(413)請求實體過大
我運行這個WCF和WCF測試客戶端,我改變配置如下所示:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IMyService" sendTimeout="00:05:00"
maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</basicHttpBinding>
</bindings>
而當我嘗試調用此方法時,我仍然有413請求實體太大。
你改變* *兩端?服務器和客戶端? – 2014-11-03 21:54:52
我添加到客戶端: <綁定名稱= 「BasicHttpBinding_IMyService」 maxBufferPoolSize = 「2147483647」 maxReceivedMessageSize = 「2147483647」> 但我仍然得到同樣的錯誤 –
Robert
2014-11-04 07:11:19