其他配置文件中的端点

时间:2013-04-04 08:00:37

标签: .net asp.net-mvc web-config endpoint

我有一个Web应用程序,我想在其他配置文件中设置我的端点(而不是在Web.config中)。这该怎么做?
我尝试在某些标签中设置属性configSource,但它不起作用。
Web.config的结构:

<configuration>
  //Some configurations
  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        //Some bindings
      </basicHttpBinding>
    </bindings>
    <client>
      //Endpoints
    </client>
  </system.serviceModel>
</configuration>

1 个答案:

答案 0 :(得分:0)

您应该尝试将configSource属性放在客户端元素上。

Visual Studio会将其标记为错误(“不允许使用configSource属性。”),但无论如何都应该有效。