gpt4 book ai didi

c# - 从 web.config 按名称读取 WCF 服务终结点地址

转载 作者:IT王子 更新时间:2023-10-29 04:53:19 26 4
gpt4 key购买 nike

在这里,我试图通过 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"],但它不起作用。

最佳答案

这就是我使用 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;

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

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

关于c# - 从 web.config 按名称读取 WCF 服务终结点地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16572890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com