In VS2008 when I change the URL Behavior property to Dynamic I get the following code auto-generated in the Reference class.
Can I override this setting (MySettings) in the web.config? I guess I don't know how the settings stuff works.
Thanks.
Public Sub New()
MyBase.New
Me.Url = Global.My.MySettings.Default.Namespace_Reference_ServiceName
If (Me.IsLocalFileSystemWebService(Me.Url) = true) Then
Me.UseDefaultCredentials = true
Me.useDefaultCredentialsSetExplicitly = false
Else
Me.useDefaultCredentialsSetExplicitly = true
End If
End Sub
EDIT
So this stuff has changed a bit since VS03 (which was probably the last VS version I used to do this).
According to: http://msdn.microsoft.com/en-us/library/a65txexh.aspx it looks like I have a settings object on which I can set the property programatically, but that I would need to provide the logic to retrieve that URL from the web.config.
Is this the new standard way of doing this in VS2008, or am I missing something?
EDIT #2
Anyone have any ideas here? I drove around it in my application and just put the URL in my web.config myself and read it out. But I'm not happy with that because it still feels like I'm missing something.