解决办法:

asp.net web service默认的请求长度是4M,可以在web.config中重新设置,如下:

<configuration> 
  <system.web> 


    <httpRuntime maxRequestLength= "XXXXXXX" executionTimeout= "3600" /> 


  </system.web> 
</configuration> 

 

相关文章:

  • 2021-10-25
  • 2021-08-23
  • 2021-10-20
  • 2022-12-23
  • 2022-02-17
  • 2021-10-01
猜你喜欢
  • 2021-11-04
  • 2021-09-08
  • 2021-07-29
  • 2021-12-29
  • 2021-11-17
相关资源
相似解决方案