当前位置: 代码迷 >> ASP.NET >> webservice,该如何解决
  详细解决方案

webservice,该如何解决

热度:8430   发布时间:2013-02-26 00:00:00.0
webservice
向服务器端webservice,发送几十M的数据
调用webservice 出现基础连接已经关闭,发送错误

请大家指导下

------解决方案--------------------------------------------------------
确定webservice 调用的正确么?
------解决方案--------------------------------------------------------
wcf还是普通的webservice(amsx)
------解决方案--------------------------------------------------------
普通web service

<configuration>
<system.web>
...
<httpRuntime maxRequestLength="8000"></httpRuntime> <!- Add this line ->
 </system.web>
</configuration>

The maximum request size in kilobytes. The default size is 4096 KB (4 MB).
  相关解决方案