从web.config中按名称读取WCF服务端点地址
本文关键字:WCF 读取 服务 端点 地址 web config | 更新日期: 2023-09-27 18:13:39
这里我试图从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;
还可以使用以下命令从端点接口获取端点名称:
var endpointName = typeof (EndpointInterface).ToString();
我猜你实际上必须遍历端点:
string address;
for (int i = 0; i < clientSection.Endpoints.Count; i++)
{
if (clientSection.Endpoints[i].Name == "SecService")
address = clientSection.Endpoints[i].Address.ToString();
}
每个客户端端点都有一个名称 -只需使用该名称:
实例化您的客户端代理ThirdServiceClient client = new ThirdServiceClient("ThirdService");
这样做将自动从配置文件中读取正确的信息。