I want to be able to use server2 if server1 fails, so I have two web references but this leads to an "Ambiguous reference" error because it is the same service on both servers.
This is the C# code:
using App.org.weccrc.www; // Main Server using App.org.weccrc.www2; // Backup Server
Is there a way to check if the service is available on server1 before the "using" statement"?
can this be a conditional statement?
Or there is another approach to solve this issue.
Thanks in advance
Raúl