Skip to main content
 首页 » 编程设计

C# WCF编程注意

2022年07月19日147EasonJim

1、在host程序中,使用using (ServiceHost host = new ServiceHost(typeof(Service1))) { },客户端程序一直无法找到服务

     改成: 

  try
  {
    ServiceHost host1 = new ServiceHost(typeof(Service1));

          。。。
  }
  catch (Exception ex)
  {
    MessageBox.Show(ex.ToString());
  }


本文参考链接:https://www.cnblogs.com/xihong2014/p/14811967.html