如何使用多个Endpoint URI调用服务
本文关键字:URI 调用 服务 Endpoint 何使用 | 更新日期: 2023-09-27 18:21:32
要放到上下文中,我有一个客户端应用程序,它将尝试调用将部署在多个web服务器上的web服务。URI列表将从客户端的Settings.settings
文件中获得,foreach循环将遍历URI,直到可用服务做出响应。
假设我有以下合同的服务:
[ServiceContract]
public interface ICMMSManagerService
{
[OperationContract]
ServerInfo GetServerInfo(string systemNumber);
}
在服务项目的web.config中,我定义了CMMSManager
服务,其端点名称为:BasicHttpBinding_IWorkloadMngrService
<system.serviceModel>
<services>
<service name="WorkloadMngr">
<endpoint binding="basicHttpBinding" contract="IMetadataExchange" />
</service>
<service name="CMMSManager">
<endpoint binding="basicHttpBinding" contract="IMetadataExchange" name="BasicHttpBinding_IWorkloadMngrService" />
</service>
</services>
<client>
<remove contract="IMetadataExchange" name="sb" />
</client>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding>
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
在客户端,当应用程序启动时,我执行了以下代码:
private void QueryWebServiceUrls()
{
var webServiceUrls = Properties.Settings.Default.WebServiceUrls;
foreach (var webServiceUrl in webServiceUrls)
{
try
{
var client = new CMMSManagerServiceClient("BasicHttpBinding_IWorkloadManagerService");
client.Endpoint.Address = new EndpointAddress(new Uri(webServiceUrl),
client.Endpoint.Address.Identity, client.Endpoint.Address.Headers);
client.Open();
var result = client.GetServerInfo("test");
}
catch (EndpointNotFoundException e)
{
continue;
}
catch (InvalidOperationException e)
{
break;
}
}
}
但是,当CMMSManagerServiceClient
类被实例化时,应用程序会与InvalidOperationException
一起崩溃。
找不到名为的终结点元素"BasicHttpBinding_IWorkloadMngrService"和约定ServiceModel客户端中的"ComClientService.ICMSManagerService"配置部分。这可能是因为没有配置文件为您的应用程序找到,或者因为没有匹配的端点元素这个名称可以在client元素中找到。
我在app.config中有以下配置:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_ICMMSManagerService">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost/WorkloadMngr/CMMSManagerService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICMMSManagerService"
contract="ComClientService.ICMMSManagerService" name="BasicHttpBinding_ICMMSManagerService" />
</client>
</system.serviceModel>
通过将BasicHttpBinding_ICMMSManagerService
参数传递给CMMSManagerServiceClient
类,我认为一切都是有效的。我不知道此刻我错过了什么。。。有什么想法吗?
错误会告诉您到底出了什么问题:没有名为BasicHttpBinding_IWorkloadMngrService
的端点。app.config说端点被称为BasicHttpBinding_ICMMSManagerService
,所以你的代码应该是:
var client = new CMMSManagerServiceClient("BasicHttpBinding_ICMMSManagerService");
希望这能有所帮助。