远程服务器返回了错误 NOTFOUND

每次遇到这个错误,原因都很复杂,这次遇到的情况是WebService上传文件时产生,最终发现是文件太大的原因。解决方法: 

 

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

 

 

posted on 2010-09-19 11:38  廖勇军  阅读(636)  评论(0编辑  收藏  举报

导航