WebService reload and install during running time

  • Thread starter Thread starter markusl
  • Start date Start date
M

markusl

Question:

Is it possible to download (with a request from my Application) a
newer Version of my WebService during my Application is running?
Or if the WebService is installed on anoder Server, that I can
download the WebService with the new URL: bla/bla/webServiceName?wsdl


Thanks for answering me
 
Could you clarify a bit? One of the features of a webservice is that it
isn't downloaded to the applications. It can be updated in place with no
effect to those that call it (assuming sematics are preserved).

To point to a separate URL, set the url to dynamic when you add the web
reference and it will persist the url in your app.config. Or, after
instantiating the proxy object, set it's Url propery to the new server
programmaticaly.

markusl said:
Question:

Is it possible to download (with a request from my Application) a
newer Version of my WebService during my Application is running?
Or if the WebService is installed on anoder Server, that I can
download the WebService with the new URL: bla/bla/webServiceName?wsdl


Thanks for answering me
 
Back
Top