I'm using Google Chrome to run some tests on an application that I'm servicing. Specifically I'm using Ajax to be able to upload a ZIP file.
When I test on my machine locally, uploading occurs normally. But when I do this in production, if the file is large, an error is generated in Google Chrome.
net::ERR_SPDY_PROTOCOL_ERROR
The strange thing about this is that I get no response from the server other than the (failed)
value on the Network tab of the Chrome Console.
The two tests that I made, when the request arrived for about 2 minutes, this error occurs, without getting any response from the server - because all HTTP errors that occur on the server are recorded in a log, but nothing has been reported there.
Could this error be something related to Google Chrome?
Note : I am using IIS 10 Server and my application is Web Forms.