Currently I'm looking at a problem with web references in vs2005 .net
I have multiple web applications with multiple dynamic web references, now in the web.config I see the following code:
<applicationSettings>
<MainWeb.Properties.Settings>
<setting name="MainWeb_localhost_WebService" serializeAs="String">
<value>http://localhost/test/WebService.asmx</value>
</setting>
</MainWeb.Properties.Settings>
</applicationSettings>
But because I'm using the same web services in different applications I want the place the web reference in the machine.config, but As you can see, the name of the web reference is diverted from the web application name, so the name is not dynamic at all.
And I don't want to put 10 different web references in the machine.config for the same web service.
So now is my question if someone know a good solution/workaround for this isseu.