首页 > 代码库 > http 413 wcf
http 413 wcf
在网上搜到413的解决办法有多种,看具体项目找到对应的解决办法
如果是wcf返回的413,与serverRuntime无关,只要在Binding中设置最大接收值即可,
<binding name="basic-http-bind-cfg" messageEncoding="Text" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" > <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security> </binding>
如果还不行,这样设置就可以了,我就是这样解决的
<basicHttpBinding> <binding maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647"> <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows" /> </security> </binding> <binding name="basic-http-bind-cfg" messageEncoding="Text" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" > <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security> </binding>
第一个无name的binding很重要
http 413 wcf
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。