I have a scenario in which I'm going to need an arbitrary number of servers to provide the same SOAP web service. I would like to generate one set of proxy classes and be able to supply them with a location to point them at the different servers at runtime. Unfortunately, it looks as though the wsdl:port node (child of wsdl:service) requires the address of a specific server to be hardcoded. It appears that due to this the URL will be baked into my proxy classes. I know that I could potentially modify this by hand-editing the generated proxy classes, or modifying the code generation, but I'd really prefer not to resort to that. I feel like there's got to be a better way to solve this problem. I just want to decouple the interface definition from the location that the service will be residing at. I'm using VS2008 and C#.NET if that's of any help though best would be a language-agnostic (SOAP or WSDL specific) general solution to this problem.
| ||||
|
feedback
|
|
Why don't you load balance the web servers and then create a DNS entry for the load balanced IP address....essentially creating a web farm. This will allow you to reference the hostname rather than the static IP addresses and if you ever need to change the IP address of the load balancer or the web servers it is a one time change. Plus you then have redundancy and performance control. | |||
feedback
|
|
If you're using a WebReference (pre-WCF) to get to the web service, you can simply set the Url property on the web service proxy class after you create it. For WCF, you can provide a different endpoint address to the proxy class constructor, rather than using the default (among other possible solutions). | ||||
|
feedback
|
|
No, in .NET you can change the URL at runtime.
| ||||
|
feedback
|
|
When you add a web reference to your project, it places the address of the web service into the .config file of your application / web application. You can then simply change this setting in the config file to point to a different web service location, assuming of course that the services are identical. | |||||
feedback
|
|
The easiest solution would be to use a software load balancer such as HAProxy. At more cost, you could use a hardware solution such as Big-IP. | |||
|
feedback
|
|
Here's a hint on how to decide the URL of WSDL. I´m just changing the port but it´s of course possible to make it more advanced.
Put that in your
I hope you can get new ideas of this. | ||||
|
feedback
|
|
Client proxies have URL property you can set at runtime. To make it simpler, wsdl.exe utility has However, I would agree with @Matt and suggest you consider load balancing as the best solution in the long run. | ||||
|
feedback
|
For 2, then you can do as above, just change the service URL in code. For 1, you could use round-robin DNS (e.g. you see multiple servers with at the command line type | ||||
|
feedback
|