I have an ASP.NET MVC2 Web application, working with SQL Server 2008 R2, managed by IIS 6.2. I have a functionality where one particular admin needs to upload about 5000 documents, which then get to be processed and stored in the server, while their names are saved in a database.
Problem is, on the client side, 10 minutes after the file upload begins, I get:
504 Gateway Time-out The server didn't respond in time.
I changed the httpRuntime.ExecutionTimeout in the web.config but it didn't solve the problem.
Does anyone know where is the value limiting me stored?
Here's my web.config file
EDIT: Also, after the Error 504 is received, the data storage in the database keeps going anyways.