IIS errors "System.Web.HttpException: Request timed out" on otherwise successful requests

The httpRuntime executionTimeout adjustment resolved the issue.

<system.web>
  <httpRuntime executionTimeout="86400" />
</system.web>
1 Like