I have the following config for my binding:
<binding name="wshttp" openTimeout="00:01:00" sendTimeout="00:02:00" receiveTimeout="00:03:00" closeTimeout="00:04:00">
..snap
<reliableSession inactivityTimeout="00:05:00" maxRetryCount="8" ordered="true"/>
..snap
</binding>
My expectation here is, that when the client proxy fails to send within 2 minutes, the request should be retried. However:
16:37:49,242 INFO Start process
16:39:49,588 FATAL The request operation did not complete within the allotted timeout of 00:02:00
So the application throws an error within 2 minutes, and doesn't retry the request. What should I do to get it to start retrying?