How can I change the endpoint address programmatically in the client site?

后端 未结 2 793
猫巷女王i
猫巷女王i 2020-12-15 13:39

How can I change the endpoint address programmatically in the client site?

相关标签:
2条回答
  • 2020-12-15 14:25
    proxy.Endpoint.Address = new EndpointAddress("http://newaddress");
    

    where proxy is an instance of the client class generated when importing the WSDL. Or you can specify the address when creating the client proxy:

    var endpoint = new EndpointAddress("http://newaddress");
    var proxy = new SomeClientProxy("BasicHttpBinding_IHelloWorld", endpoint);
    
    0 讨论(0)
  • 2020-12-15 14:33

    http://deadkota.wordpress.com/2010/06/23/wcf-client-change-endpoint-address-dynamically/

    using(abcServiceClient proxy = new ABCServiceClient())
    {
        proxy.Endpoint.Address = new System.ServiceModel.EndpointAddress("net.tcp://localhost:8082/ABCService");
        proxy.Open();
        proxy.Function();
    }
    
    0 讨论(0)
提交回复
热议问题