Я намагаюся підключити програму (клієнт) до відкритої служби WCF, але не через файл конфігурації програми, а в коді.
Як мені робити це?
Відповіді:
Вам доведеться використовувати клас ChannelFactory .
Ось приклад:
var myBinding = new BasicHttpBinding();
var myEndpoint = new EndpointAddress("http://localhost/myservice");
using (var myChannelFactory = new ChannelFactory<IMyService>(myBinding, myEndpoint))
{
IMyService client = null;
try
{
client = myChannelFactory.CreateChannel();
client.MyServiceOperation();
((ICommunicationObject)client).Close();
myChannelFactory.Close();
}
catch
{
(client as ICommunicationObject)?.Abort();
}
}
Супутні ресурси:
client
щоб IClientClient
для того , щоб закрити його , хоча.
IMyService
інтерфейс успадковується від System.ServiceModel.ICommunicationObject . Я змінив зразок коду, щоб зробити це зрозумілішим.
Ви також можете робити те, що робить згенерований код "Посилання на послуги"
public class ServiceXClient : ClientBase<IServiceX>, IServiceX
{
public ServiceXClient() { }
public ServiceXClient(string endpointConfigurationName) :
base(endpointConfigurationName) { }
public ServiceXClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) { }
public ServiceXClient(string endpointConfigurationName, EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) { }
public ServiceXClient(Binding binding, EndpointAddress remoteAddress) :
base(binding, remoteAddress) { }
public bool ServiceXWork(string data, string otherParam)
{
return base.Channel.ServiceXWork(data, otherParam);
}
}
Де IServiceX - це ваш контракт на обслуговування WCF
Тоді код вашого клієнта:
var client = new ServiceXClient(new WSHttpBinding(SecurityMode.None), new EndpointAddress("http://localhost:911"));
client.ServiceXWork("data param", "otherParam param");