I have a .Net Framework 4.8 api running in a WindowsServer 2022 with IIS. Sometimes the request does not stop running even when there should a time limit for each request :
I found a similar question but there was no answer : ASP.Net httpruntime executionTimeout not working (and yes debug=false)
In the web.config, I got the debug property set to false and executionTimeout set to 90 but this didn't solve the issue.
The "Shutdown Time Limit" of the application pool is set to 90 seconds but it also doesnt seem to be working.
I also tried a solution of another similar question, but it didnt work : .NET Execution Timeout Not Taking Effect in an MVC Web Project
How can i solve this issue?