从web.config按名称读取WCF服务端点地址

时间:2013-05-15 18:54:43

标签: c# wcf web-config

这里我试图通过web.config

中的名称读取我的服务端点地址
ClientSection clientSection = (ClientSection)ConfigurationManager.GetSection("system.serviceModel/client");
var el = clientSection.Endpoints("SecService"); // I don't want to use index here as more endpoints may get added and its order may change
string addr = el.Address.ToString();

有没有办法可以根据名称读取终点地址?

这是我的web.config文件

<system.serviceModel>
 <client>
     <endpoint address="https://....................../FirstService.svc" binding="wsHttpBinding" bindingConfiguration="1ServiceBinding" contract="abc.firstContractName" behaviorConfiguration="FirstServiceBehavior" name="FirstService" />
     <endpoint address="https://....................../SecService.svc" binding="wsHttpBinding" bindingConfiguration="2ServiceBinding" contract="abc.secContractName" behaviorConfiguration="SecServiceBehavior" name="SecService" />
     <endpoint address="https://....................../ThirdService.svc" binding="wsHttpBinding" bindingConfiguration="3ServiceBinding" contract="abc.3rdContractName" behaviorConfiguration="ThirdServiceBehavior" name="ThirdService" />
            </client>
    </system.serviceModel>

这将有效clientSection.Endpoints[0];,但我正在寻找一种按名称检索的方法。

即。像clientSection.Endpoints["SecService"]这样的东西,但它不起作用。

3 个答案:

答案 0 :(得分:16)

我猜你必须实际遍历端点:

string address;
for (int i = 0; i < clientSection.Endpoints.Count; i++)
{
    if (clientSection.Endpoints[i].Name == "SecService")
        address = clientSection.Endpoints[i].Address.ToString();
}

答案 1 :(得分:16)

这是我使用Linq和C#6的方式。

首先获取客户端部分:

var client = ConfigurationManager.GetSection("system.serviceModel/client") as ClientSection;

然后获得端点等于endpointName:

var qasEndpoint = client.Endpoints.Cast<ChannelEndpointElement>()
    .SingleOrDefault(endpoint => endpoint.Name == endpointName);

然后从端点获取url:

var endpointUrl = qasEndpoint?.Address.AbsoluteUri;

您还可以使用以下方法从端点接口获取端点名称:

var endpointName = typeof (EndpointInterface).ToString();

答案 2 :(得分:5)

好吧,每个客户端端点都有一个名称 - 只需使用该名称实例化您的客户端代理:

ThirdServiceClient client = new ThirdServiceClient("ThirdService");

这样做会自动从配置文件中读取正确的信息。