1). Is there anyway to do this in VS 2K5 In 2K3 all we had to do is instanciate a variable of the web service type and edit the "URL" property. Can't seem to find a way to do that in 2K5.
2). Is there an example of exploring the list of available web services from a URL I'd like to be able to have the user enter a URL and then be able to select a web service from the available list.

Questions about web services in 2K5
bijie85
Tech Guy
I've found out how to get the current we reference's URL property. I've tried to update the URL but it doesn't seem to change the actual source machine.
Jouni79
2. Do you mean web services or web methods The web methods are available through any WSDL file exposed by the URL. A list of web services is a little more challenging. That is, you could implement a discovery document and use the System.Web.Services.DiscoveryDocument class to iterate across the list. But I never liked exposing a list of the web services. I figured if you didn't know exactly what you were asking for, you shouldn't be bothering me. But that's just me ;)
Hope that helps.