vote up 0 vote down star

We have a series of web services that live in different environments (dev/qa/staging/production) that are accessed from a web application, a web site, and other services. There are a few different service areas as well. So for production, we have services on four different boxes.

We conquered the db connection string issue by checking the hostname in global.asax and setting some application wide settings based on that hostname. There is a config.xml that is in source control that list the various hostnames and what settings they should get.

However, we haven't found an elegant solution for web services. What we have done so far is add references to all the environments to the projects and add several using statements to the files that use the services. When we checkout the project, we uncomment the appropriate using statement for the environment we're in.

It looks something like this:

// Development
// using com.tracking-services.dev
// using com.upload-services.dev

// QA
// using com.tracking-services.qa
// using com.upload-services.qa

// Production
// using com.tracking-services.www
// using com.upload-services.www

Obviously as we use web services more and more this technique will get more and more burdensome.

I have considered putting the namespaces into web.config.dev, web.config.qa, etc and swapping them out on application start in global.asax. I don't think that will work because by the time global.asax is run the compilation is already done and the web.config changes won't have much effect.

Since the "best practices" include using web services for data access, I'm hoping this is not a unique problem and someone has already come up with a solution.

Or are we going about this whole thing wrong?

Edit: These are asmx web services. There is no url referenced in the web.config that I can find.

flag

71% accept rate
Why do you have different namespaces in your web services for different environments? Aren't the same binaries deployed on dev and qa and production? – Darin Dimitrov Oct 15 at 17:25
The different namespaces are how the different urls are specified. Dev, QA, and Production often have different binaries since any change has to be developed in Dev then moved to QA for testing and finally pushed to Production. All three binaries could be different. – Jere.Jones Oct 15 at 18:12
The namespaces should not change. That's a major error. – John Saunders Oct 19 at 14:25

1 Answer

vote up 1 vote down

Make one reference and use configuration to switch the target urls as appropriate. No reason to have separate proxies at all.

link|flag
That sounds like a great idea. Umm... how do I do that? – Jere.Jones Oct 15 at 18:13
Exactly how depends on what sorts of proxies (ASMX vs WCF) you are using. In either case, there should be some stuff in your application's configuration generated when you created the proxy. Adjust the url in that as appropriate. You might have to set the dynamic property on the proxy to true and regenerate. You can also generally supply the configuration information in code if you want to do it that way or have your own config infrastructure. – Wyatt Barnett Oct 15 at 18:43

Your Answer

Get an OpenID
or

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