码迷,mamicode.com
首页 > Web开发 > 详细

WebServer参数长度超出解决

时间:2015-07-14 15:26:47      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

当内容超过了4M会报错

System.Web.Services.Protocols.SoapException: 运行配置文件中指定的扩展时出现异常。 ---> System.Web.HttpException: 超过了最大请求长度。
   在 System.Web.HttpRequest.GetEntireRawContent()
   在 System.Web.HttpRequest.get_InputStream()
   在 System.Web.Services.Protocols.SoapServerProtocol.Initialize()
   --- 内部异常堆栈跟踪的结尾 ---

 可以在WebServer 里的 Web.config修改最大的请求长度,如修改成50M,调用方即可正常传出大数据参数调用

<system.web>
   <httpRuntime   maxRequestLength= "51200"   executionTimeout="3600"   />
 </system.web>

 maxReceivedMessageSize="2147483647"

WebServer参数长度超出解决

标签:

原文地址:http://www.cnblogs.com/wdw31210/p/4645336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!