<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="FaultTolerantWebService.Common.Invoker" type="FaultTolerantWebService.Common.Configuration.ConfigSection, FaultTolerantWebService.Common" />
  </configSections>
  <!-- 
    You can configure the way the Fault tolerant web service framework will behave
      maxRetry : maximum number of retry before throwing an exception
      retryInterval : the number of millisecond of waiting between retries
  -->
  <FaultTolerantWebService.Common.Invoker maxRetry="5" retryInterval="1000">
    <alternativeUriList>
      <!-- Add all the alternative urls here -->
      <add soapClientClass="TestProject.Webservices.CustomerService, TestProject" uri="http://testing.url.com/Customer.asmx" priority="10"/>
      <add soapClientClass="TestProject.Webservices.CustomerService, TestProject" uri="http://testing.url.com/Customer.asmx" priority="5"/>
    </alternativeUriList>
  </FaultTolerantWebService.Common.Invoker>
</configuration>