The specified CGI application encountered an error and the server terminated the process

后端 未结 11 1330
轮回少年
轮回少年 2020-11-28 12:32

I am hosting a asp.net 5 application on azure, the code is complied for beta8, the application runs fine on the local environment and when i publish the code on the azure si

11条回答
  •  Happy的楠姐
    2020-11-28 13:10

    I got the same error. After searching some solutions, I changed the code, replacing the async method calls with non-async ones, regarding the notes that thread pool might exceed the allowed capacity. This did not work. Then I increased the request timeout in web.config to 20 minutes and it is resolved.

    Add the string below in web.config file.

    requestTimeout="00:20:00"
    

    as

    
    

提交回复
热议问题