如何以编程方式将客户端连接到WCF服务?


Answers:


113

您必须使用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();
    }
}

相关资源:


4
万分感谢。另外,以下是如何在应用程序中使用IMyService对象的方法:msdn.microsoft.com/en-us/library/ms733133.aspx
Andrei 2010年

您应该强制client转换IClientClient为关闭它。
Dyppl

在我的示例中,我假设IMyService接口继承自System.ServiceModel.ICommunicationObject。我修改了示例代码以使其更加清晰。
恩里科·坎皮多里奥

@EnricoCampidoglio问题:您是否每次都要拨打电话都要重新创建频道,或者可以将IService存储在全局变量中以在整个过程中重复使用?当我使用此方法测试连接时,它可以工作,但是后来,如果我尝试使用单独的方法执行调用,则会收到“没有端点监听”错误?
MaxOvrdrv 2014年

2
我结合了这个答案,效果很好。谢谢
JumpingJezza

8

您还可以执行“服务参考”生成的代码

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");
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.