So, i have a central web service that is responsible for managing other services. These services register in the main WS with their URL, leading to their own web service.
what i need to do now is call the child web services from the central web service. I’ve searched google on how to do this but all i could find was this.
I would like to register any web service and not create a web reference, as suggested in the solution i’ve found.
How is this done without using a web reference?
Alka,
if you are using webservices, other than WCF, you can change the URL of the webservice you are going to in the web.config, you can also change this in code via the URL on your proxy.
eg
You could also create your own webservice proxy and handle the webservice redirection from there.