TimeoutException: The request channel timed out while waiting for a reply after 00:00:59.7350618. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to t...
Views (810)
Hi,
I was getting the above error while working with large number of records using OrganizationServiceProxy in a console application.
Increasing the value for the timeout property resolved the issue.
// set the binding timeout to 20 minute (default is 2 minutes)
organizationProxy.Timeout = new
TimeSpan(0, 20, 0);
Bye.
Filed under: CRM, CRM 2011, Microsoft Dynamics CRM Tagged: CRM, CRM 2011, Microsoft Dynamics CRM
This was originally posted here.

Like
Report
*This post is locked for comments