Error: System.ServiceModel.CommunicationException: The maximum retry count has been exceeded with no response from the remote endpoint. The reliable session was faulted
Found a few references:
http://stackoverflow.com/questions/2394084/wcf-the-user-specified-maximum-retry-count-for-a-particular-message-has-been-exc
http://consultingblogs.emc.com/pauloreichert/archive/2007/12/14/6081.aspx#9331
http://social.msdn.microsoft.com/Forums/en/wcf/thread/555b47a1-158a-4a42-9b73-d748a4e83b15
http://www.smartasses.be/2009/01/26/wcf-reliable-session-and-keep-alives/
Interesting because I have implemented keep alives for duplex communication earlier.
In this case, I tried doing this:
<reliableSession inactivityTimeout="23:00:00" maxRetryCount="8192"
ordered="true" />
http://stackoverflow.com/questions/2394084/wcf-the-user-specified-maximum-retry-count-for-a-particular-message-has-been-exc
http://consultingblogs.emc.com/pauloreichert/archive/2007/12/14/6081.aspx#9331
http://social.msdn.microsoft.com/Forums/en/wcf/thread/555b47a1-158a-4a42-9b73-d748a4e83b15
http://www.smartasses.be/2009/01/26/wcf-reliable-session-and-keep-alives/
Interesting because I have implemented keep alives for duplex communication earlier.
In this case, I tried doing this:
<reliableSession inactivityTimeout="23:00:00" maxRetryCount="8192"
ordered="true" />
Comments
Post a Comment