I have an ASP.net application which calls a WCF service to retrieve Data from SQL Server.
There is a function which has to wait the WCF to Select some rows from over 1 million records. This function causes my ASP application to generate a Request timeout error. I used the following lines to increase the timeout but it did not work, I cannot edit the IIS config file.
<system.web> <httpRuntime targetFramework="4.5.1" executionTimeout="500" /> </system.web>