private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress() { return(WebServiceSoapClient.GetEndpointAddress(EndpointConfiguration.WebServiceSoap)); }
private static System.ServiceModel.Channels.Binding GetDefaultBinding() { return(WebServiceSoapClient.GetBindingForEndpoint(EndpointConfiguration.WebServiceSoap)); }
public WebServiceSoapClient(EndpointConfiguration endpointConfiguration) : base(WebServiceSoapClient.GetBindingForEndpoint(endpointConfiguration), WebServiceSoapClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }
public WebServiceSoapClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WebServiceSoapClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }
public WebServiceSoapClient() : base(WebServiceSoapClient.GetDefaultBinding(), WebServiceSoapClient.GetDefaultEndpointAddress()) { this.Endpoint.Name = EndpointConfiguration.WebServiceSoap.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }