In my C/S project I have a webservice running on an application server... ICurrently only at test server
Now I want to move my application to production, which is the best way to switch the webreferences from host "server_test" to "server_prod"? I mean, for every object I create which has webmethods I basically write

dim t as new server_test.calculator
dim res as integer

res = calculator.subtract(4,6)



Let's say I have a few 100 references to server_test in my solution, now I want to move this to host server_prod... How can I handle my application so it will change references to the service at server_prod instead? Which is the best way to do this????

In my solution explorer I have added web references to server_test.. should I also add reference to server_prod, or should I create a separate solution for prod????


kind regards
Henrik