This is the Remoting exception IIS was consistently giving me after a deep search. The search was returning some mammoth blob's and failing after a few minutes.
I thought it might be an IIS error, sure enough after firing up TCPTrace and sniffing around, I found
HTTP/1.1 100 Continue
Server: ASP.NET Development Server/9.0.0.0
Date: Sun, 28 Dec 2008 23:52:31 GMT
Content-Length: 0
HTTP/1.1 500 Internal Server Error
Server: ASP.NET Development Server/9.0.0.0
Date: Sun, 28 Dec 2008 23:54:35 GMT
X-AspNet-Version: 2.0.50727
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 2549
Connection: Close
--snip html
Request timed out.
--snip html
So rather than throwing a relevant HTTP response code, we get a html error page that can't be serialized. Hopefully this saves fellow insane technologists a little time.
2 comments:
How did you solved this error?
I converted the hex error to ascii, which yielded 'Request timed out'. To fix it, i optimised the query to return faster. Your other option is to increase executionTimeout in your web.config.
Post a Comment