远程服务器返回了错误 NOTFOUND
每次遇到这个错误,原因都很复杂,这次遇到的情况是WebService上传文件时产生,最终发现是文件太大的原因。解决方法:
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
</system.web>
</configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
</system.web>
</configuration>