我想从Silverlight向WCF SVC服务发送一个大的XML字符串。
看起来大约50k以下的任何东西都被正确发送但是如果我尝试发送超过该限制的东西,我的请求到达服务器(调用BeginRequest)但从未到达我的SVC。我得到了经典的“NotFound”例外。
有关如何提高限额的想法吗?
如果我不能提高它?我有什么其他选择?
这是我的绑定配置
<bindings>
<customBinding>
<binding name="customBinding0" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" maxBufferPoolSize="2147483647">
<binaryMessageEncoding>
<readerQuotas
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxDepth="2147483647"
maxNameTableCharCount="2147483647"
maxStringContentLength="2147483647" />
</binaryMessageEncoding>
<httpTransport/>
</binding>
<binding name="customBindingSecure" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" maxBufferPoolSize="2147483647">
<binaryMessageEncoding>
<readerQuotas
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxDepth="2147483647"
maxNameTableCharCount="2147483647"
maxStringContentLength="2147483647" />
</binaryMessageEncoding>
<httpsTransport/>
</binding>
</customBinding>
</bindings>
编辑:更多细节:如果我打破Global.asax Endrequest,我会在响应中看到“Bad Request 400”
编辑:再次提供更多详细信息:我激活了跟踪,我可以看到以下错误:已超出传入邮件的最大邮件大小限额(65536)。要增加配额,请在相应的绑定元素上使用MaxReceivedMessageSize属性。
但是,我的maxReceivedMessageProperty已设置为2147483647。
答案 0 :(得分:6)
好的,它有效!
由于我使用的是customBinding,因此必须在httpTransport元素上设置maxReceivedMessageSize,如下所示:
<bindings>
<customBinding>
<binding name="customBinding0" >
<binaryMessageEncoding>
<readerQuotas
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxDepth="2147483647"
maxNameTableCharCount="2147483647"
maxStringContentLength="2147483647" />
</binaryMessageEncoding>
<httpTransport maxReceivedMessageSize="4194304" />
</binding>
<binding name="customBindingSecure">
<binaryMessageEncoding>
<readerQuotas
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxDepth="2147483647"
maxNameTableCharCount="2147483647"
maxStringContentLength="2147483647" />
</binaryMessageEncoding>
<httpsTransport maxReceivedMessageSize="4194304" />
</binding>
</customBinding>
</bindings>
谢谢大家的帮助!
答案 1 :(得分:1)
您还可以打开WCF日志记录,以获取有关原始错误的更多信息。这有助于我解决这个问题。
将以下内容添加到您的web.config中,它将日志保存到C:\ log \ Traces.svclog
<system.diagnostics>
<sources>
<source name="System.ServiceModel"
switchValue="Information, ActivityTracing"
propagateActivity="true">
<listeners>
<add name="traceListener"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData= "c:\log\Traces.svclog" />
</listeners>
</source>
</sources>
</system.diagnostics>
答案 2 :(得分:0)
在服务器端的app.config / web.config中尝试此操作:
<system.web>
<httpRuntime maxRequestLength="109200" executionTimeout="3600" />
</system.web>