We have a web application thru which we can search for the reports and get the results on a telerik rad grid. Each report has a specific stored procedure. This works fine on Development machine where the data is less and Query execution for any report is
about 5-10 seconds, but in QA and Prod where data is huge and query execution takes about 5-10 minutes depending on the report, we are getting the below error.
If I select any report and just click search and leave it alone, it takes 10min to render the results to the grid, which is fine.
Below error occurs only in a specific scenario when I search for a report say ReportA (which takes about 10min to render), but before the results of ReportA are rendered, if I search for another report say ReportB then I am getting this error.
An unknown error occurred while processing the request on the server. The status code returned from the server was: 12031
Please help me finding the root cause of this problem. I dont know where to look, any help would be appreciated...
Already tried bumping up maxRequestLength property but no luck.. and also can't run the QA or PROD application in other browsers, it is restricted to IE only.
Also increased AsyncPostBackTimeout to 21min.. no luck..
This is happening only when I search for 2nd report while the 1st request is still loading..(This is the key point here)
minnu4515
Member
2 Points
3 Posts
An unknown error occurred while processing the request on the server. The status code returned fr...
Feb 05, 2013 09:07 PM|LINK
We have a web application thru which we can search for the reports and get the results on a telerik rad grid. Each report has a specific stored procedure. This works fine on Development machine where the data is less and Query execution for any report is about 5-10 seconds, but in QA and Prod where data is huge and query execution takes about 5-10 minutes depending on the report, we are getting the below error.
If I select any report and just click search and leave it alone, it takes 10min to render the results to the grid, which is fine.
Below error occurs only in a specific scenario when I search for a report say ReportA (which takes about 10min to render), but before the results of ReportA are rendered, if I search for another report say ReportB then I am getting this error.
Please help me finding the root cause of this problem. I dont know where to look, any help would be appreciated...
chetan.sarod...
All-Star
65839 Points
11163 Posts
Re: An unknown error occurred while processing the request on the server. The status code returne...
Feb 06, 2013 02:47 AM|LINK
It is a WinInet API error. http://support.microsoft.com/kb/193625
The issue seems to be with the WinInet api, may be you can try to access it with another browser to see if it works.
12031 ERROR_INTERNET_CONNECTION_RESET The connection with the server has been reset.
You'll see if the request size affects the connection being rest. You may try increase the size of maxRequestLength property, see if it helps.
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
minnu4515
Member
2 Points
3 Posts
Re: An unknown error occurred while processing the request on the server. The status code returne...
Feb 07, 2013 12:19 AM|LINK
Already tried bumping up maxRequestLength property but no luck.. and also can't run the QA or PROD application in other browsers, it is restricted to IE only.
Also increased AsyncPostBackTimeout to 21min.. no luck..
This is happening only when I search for 2nd report while the 1st request is still loading..(This is the key point here)