c# WCF服务获得客户端服务

  • 本文关键字:服务 客户端 WCF c#
  • 更新时间 :
  • 英文 :


我已经添加了一个WCF服务作为参考。我更改了服务的地址,这样它就不会出现在配置中,我试着做一个快捷方式,这样我就不会每次都写同样的东西。你有什么建议吗?

internal class TestService
{
public static TestServisClient GetServiceClient
{
get
{
var binding = new BasicHttpBinding();
var endpoind = new EndpointAddress("http://localhost:64733/TestService.svc?wsdl");
return new TestServisClient(binding, endpoind);
}
}
}
testservice.getserviceclient.getdatatables();

这样使用对吗?我是否应该再次调用它来关闭服务?

我想我必须这样做

using (TestServisClient client = new TestServisClient(
new BasicHttpBinding(), new EndpointAddress(url))) 
{ ... }

相关内容

  • 没有找到相关文章

最新更新