I have a Webservice written in C # and the client application (data collectors).
Collectors consume Webservice to query information in the main DB. In each client I install my WebService (Data Server) has a different IP.
How can I parameterize client applications (collectors) via code to consume Webservice on a different IP than I used to add Web References?
Is there any way to change via IP code to search the WebService?
Eg:
MeuWS objColetar = new MeuWS();
objColetar.URL = novoIP;
objColetar.FuncaoColetar(param1, param2);