I have 2 web sites with the identical web service. For web service "SampleService", I would like to know how to choose which web server to choose from. Web service: "SampleService" Web reference "SampleWebReference"

Web service url: site 1: http://www.samplesite.com Site 2: http://www2.samplesite.com

Need: Through code, how do I change which site the web reference references based on user selection?

link|improve this question

49% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Click on your web service and in the properties window set the URL behaviour to Dynamic.

Then to set the url in code:

SampleWebReference reference = new SampleWebReference();
reference.Url = "http://www2.samplesite.com";
link|improve this answer
plus one for tea – Stuart Dunkeld Sep 3 '10 at 22:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.