WebService reload and install during running time

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
 
P

Philip Rieck

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top