Hi,
First, why not just put the url in the Spring.NET configuration file ?
Having multiple ways to configure your application can be a bit confused.
If this file have been generated by Visual Studio because you added a Web Reference, you should change the 'Url Behavior' property of your Web references from 'Dynamic' to 'Static'.
then you can remove all the stuffs VS generates, the settings files and the configuration code in the App.config/Web.config.
To configure your proxy, just add it to the container and use DI to inject the Url property.
Anyway, you can achieve what you wanted to do with the Spring Expression language :
<object name="..." type="...">
<property name="Uri" expression="T(Properties.Settings, MyAssembly).Default.MyUri">
</object>
Another solution is to use the VariablePlaceholderConfigurer component with the IVariableSource interface :
http://www.springframework.net/doc-latest/reference/html/objects.html#objects-variablesource
<object type="Spring.Objects.Factory.Config.VariablePlaceholderConfigurer, Spring.Core">
<property name="VariableSources">
<list>
<object type="MyCustomImplementationVariableSource, MyAssembly"/>
</list>
</property>
</object>
<object name="..." type="...">
<property name="Uri" value="${MyUri}"/>
</object>
MyCustomImplementationVariableSource is an implementation of the IVariableSource that will resolve variables from where you want (for example from your Settings class).