I've a asp.net web solution which references a web service from another web site (also in our development environment). I want to know if I need to change the address of the web service (from production server) when deploying to production and how or if it is not necessary to make any changes?

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

First off, make sure the WebService is set to Dynamic.

Then I suggest you put the URI in your web.config file as follows:

<appSettings>
	<add key="WebServiceUri" value="http://example.com/service.asmx"/>
</appSettings>

When you then instantiate the WebService, do the following:

WebService service = new WebService();
service.Uri = ConfigurationSettings.AppSettings["WebServiceUri"];

The WebService will now use that URI in every WebService request it makes.

link|improve this answer
feedback

I'd say put the actual URL of the webservice in the appSettings part of your web.config, then use that at runtime.

link|improve this answer
exactly but I want to know how? – TheVillageIdiot Jul 10 '09 at 8:38
feedback

Your Answer

 
or
required, but never shown

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