Reputation: 1535
I've done my research and I understand this error message is very vague. But, I am wondering if someone might give me some insight. We have a long running RIA call that could take well over an hour or so.
After one hour exactly, we get this error message.
The remote server returned an error: NotFound. ---> System.ServiceModel.CommunicationException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound.
We change the timeout of the RIA call to 4 hours and we still get this error message after an hour. If we change the timeout to 10 minutes, we get an actual timeout error message after 10 minutes and not a NotFound error message.
Because it happens exactly after one hour - even with different parameters being passed in to the RIA call, I believe it has something to do with a timeout setting somewhere, but I can't put my finger on what would cause a timeout to occur after an hour.
The way I am setting the timeout is in the call to the ria service from the client.
Upvotes: 0
Views: 415
Reputation: 1535
I have discovered the problem.
Internet Explorer has a built in recieve time-out of 60 minutes unless it's over ridden by a registry setting. My tests have confirmed that this is the problem.
http://support.microsoft.com/kb/181050
Upvotes: 1