Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wcf - 3 retries before exception?

I was asked to build a mechanism for 3 retries before generating a request exception.

We have this topology :

enter image description here

Service1 calls Service2.

If 3 times in a row has failed - generate an excpetion.

Is there any retry mechanism in WCF ?

like image 724
Royi Namir Avatar asked Mar 06 '26 15:03

Royi Namir


1 Answers

The WCF technology addressing this is Reliable Messaging. I think MaxRetryCount is the attribute you are looking for.

Here is an example with a custom binding using MaxRetryCount.

like image 66
Dirk Brockhaus Avatar answered Mar 09 '26 03:03

Dirk Brockhaus