I have a WCF web service defined as follows
[OperationContract]
[WebInvoke(
Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "Assets/{assetId}/Reports/{startDate}/{endDate}")]
JQGridDataStore<Report> GetReportsForAssetFilterByDate(string assetId, string startDate, string endDate);
I have no problem getting answers when my JQGridDataStore contains thousands of report instances. However, the data warehouse exceeds 10,000 reports, in my browser I get the following:
Error 324 (net :: ERR_EMPTY_RESPONSE): Unknown error.
I am implementing a service and I can see how it goes through all exceptions. The JQGridDataStore object is fully created and populated with my 10,000 + Report instances. However, when I 'F10' past the return, the browser shows an empty response. All this happens in a second, so I donβt think I have any kind of timeout.
Based on this, I think that there is a certain type of buffer size limit that I encounter. What restrictions exist and how to configure them?
source
share