How to increase the timeout in IIS 7.5

0

Hello, I'm having problems running a feature that runs on MVC3 on an IIS 7.5 server. Since the functionality returns many lines, after 30 seconds of execution, it simply aborts, I tried several configurations, but I could not get one to solve.

This is the configuration of the app pool.

But the setting I do not need is the idle time, but the runtime I need to increase.

Thankful

    
asked by anonymous 27.12.2016 / 05:04

1 answer

0

Try this code in web config:

<system.web>
    <httpRuntime executionTimeout="200" />
</system.web>

Note: I saw this post from a similar problem in Stack Overflow in English and the answer above: link

Edit:

If it does not resolve, you might want to enable IIS logging. Follow the link to configure: link

    
27.12.2016 / 13:10