Reputation: 41
The request channel timed out while waiting for a reply after 00:00:59.9844002. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.
Any help is much appreciated! Thanks!
Upvotes: 4
Views: 5118
Reputation: 1
Excellent advice Jhollman, [service].InnerChannel.OperationTimeout = new TimeSpan(0,5,0) increased the timeout wait for service response to 5 minutes
Upvotes: 0
Reputation: 2297
I had same problem, i edited both my App.config and Web.config and nothing. Then i just tried this:
this.clientWCF.InnerChannel.OperationTimeout = new TimeSpan(0, 15, 0);
And it works!!! Problem solved. Hope this helps you or others in the same predicament. Regards.
Upvotes: 6