为了进入上下文,我有一个客户端应用程序,它将尝试调用将部署在多个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;
}
}
}
但是当InvalidOperationException
类被实例化时,应用程序崩溃了CMMSManagerServiceClient
。
找不到名称的端点元素 'BasicHttpBinding_IWorkloadMngrService'和合同 ServiceModel客户端中的“ComClientService.ICMMSManagerService” 配置部分。这可能是因为没有配置文件 找到您的应用程序,或者因为没有端点元素匹配 这个名字可以在客户端元素中找到。
我在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
类,一切都有效。我不知道我现在想念的是什么......有什么想法吗?
答案 0 :(得分:2)
错误告诉您确切的错误:没有名称为BasicHttpBinding_IWorkloadMngrService
的端点。 app.config表示端点名为BasicHttpBinding_ICMMSManagerService
,因此您的代码应为:
var client = new CMMSManagerServiceClient("BasicHttpBinding_ICMMSManagerService");
希望这有帮助。