Wcf 以编程方式添加端点

Wcf 以编程方式添加端点,wcf,wcf-endpoint,Wcf,Wcf Endpoint,我在客户端应用程序中连接了一个WCF服务。我在配置文件中使用以下命令 <system.serviceModel> <bindings> <basicHttpBinding> <binding name="MyNameSpace.TestService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="0

我在客户端应用程序中连接了一个WCF服务。我在配置文件中使用以下命令

<system.serviceModel>  
    <bindings>  
      <basicHttpBinding>  
        <binding name="MyNameSpace.TestService" closeTimeout="00:01:00" openTimeout="00:01:00"  
            receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"  
            bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"  
            maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647"  
            messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"  
            useDefaultWebProxy="true">  
          <readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="16384"  
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />  
          <security mode="None">  
            <transport clientCredentialType="None" proxyCredentialType="None"  
                realm="" />  
            <message clientCredentialType="UserName" algorithmSuite="Default" />  
          </security>  
        </binding>  
      </basicHttpBinding>  
    </bindings>  
    <client>  
      <endpoint address="http://localhost:9100/TestService" binding="basicHttpBinding"  
          bindingConfiguration="MyNameSpace.TestService" contract="TestService.IService" name="MyNameSpace.TestService" />  
    </client>  
</system.serviceModel>  
现在我想以图形方式定义端点。如何做到这一点?我从配置文件中注释掉了一节,因为我认为我必须在TestServiceClient实例上添加一些代码来动态添加端点,但在实例化TestServiceClient时,它会抛出以下异常

找不到引用协定的默认终结点元素 ServiceModel客户端配置中的“TestService.IService” 节。这可能是因为找不到的配置文件 您的应用程序,或者因为没有与此匹配的端点元素 可以在客户机元素中找到合同

我怎样才能做到这一点?此外,任何关于以编程方式添加端点的代码示例的观点都将受到赞赏

您可以尝试:

TestServiceClient client = new TestServiceClient("MyNameSpace.TestService")
client.BlahBlah()
如果没有,请重新检查文件TestService中的命名空间是否正确?

是否可以使用:

TestServiceClient client = new TestServiceClient();
client.Endpoint.Address = new EndPointAddress("http://someurl");
client.BlahBlah();

请注意,您的绑定配置将不再适用,因为您没有在配置文件中使用该端点配置。您也必须覆盖它。

要以编程方式创建端点和绑定,您可以在服务上执行以下操作:

ServiceHost _host = new ServiceHost(typeof(TestService), null);

var _basicHttpBinding = new System.ServiceModel.basicHttpBinding();
            //Modify your bindings settings if you wish, for example timeout values
            _basicHttpBinding.OpenTimeout = new TimeSpan(4, 0, 0);
            _basicHttpBinding.CloseTimeout = new TimeSpan(4, 0, 0);
            _host.AddServiceEndpoint(_basicHttpBinding, "http://192.168.1.51/TestService.svc");
            _host.Open();
您还可以在服务配置中定义多个端点,并选择在运行时动态连接到哪个端点

然后在客户端程序上执行以下操作:

basicHttpBinding _binding = new basicHttpBinding();
EndpointAddress _endpoint = new EndpointAddress(new Uri("http://192.168.1.51/TestService.svc"));

TestServiceClient _client = new TestServiceClient(_binding, _endpoint);
_client.BlahBlah();
basicHttpBinding _binding = new basicHttpBinding();
EndpointAddress _endpoint = new EndpointAddress(new Uri("http://192.168.1.51/TestService.svc"));

TestServiceClient _client = new TestServiceClient(_binding, _endpoint);
_client.BlahBlah();