我有一个Web应用程序,我想在其他配置文件中设置我的端点(而不是在Web.config中)。这该怎么做?
我尝试在某些标签中设置属性configSource
,但它不起作用。
Web.config的结构:
<configuration>
//Some configurations
<system.serviceModel>
<bindings>
<basicHttpBinding>
//Some bindings
</basicHttpBinding>
</bindings>
<client>
//Endpoints
</client>
</system.serviceModel>
</configuration>
答案 0 :(得分:0)
您应该尝试将configSource
属性放在客户端元素上。
Visual Studio会将其标记为错误(“不允许使用configSource属性。”),但无论如何都应该有效。