views:

59

answers:

2

The web provides an abundance of tutorials for developing and testing WCF services along with client applications that reference them all within the Visual Studio IDE.

However, in a production setting, one needs to deploy services and clients on various hosts where Visual Studio is not available, and the clients need to be configured to know the URL of the whatever service they expect to use.

Can anyone provide some instructions for this kind of deployment, or link me to a web page that contains the information that I want?

Thanks.

+1  A: 

You can supply the URL needed by a client in a configuration file and have that loaded on startup. That will allow you to easily change which URL is used by any client.

Jason W
A: 

As long as you will know when you launch your client where the services will be you can define all of the configuration in your app/web.config file. This should help get you started

Jon Norton