fail-over mechanism

Hi All,

I want to introduce fail-over mechanism if request is not entertained by any target server than request must be routed to fail-over target server. How can I do that ?

0 1 96
1 REPLY 1

Hi All I got the Answer of above question we can add following property in our target server <IsFallback>true</IsFallback>.It will configure fail over target server. Let suppose you have 2 target servers if all TargetServers are unavailable, all traffic is routed to the 3rd fallback server.

 <LoadBalancer>
        <Algorithm>RoundRobin</Algorithm>
        <Server name="target1" />
        <Server name="target2" />
        <Server name="target3">
          <IsFallback>true</IsFallback>
        </Server>
      </LoadBalancer>