1、在host程序中,使用using (ServiceHost host = new ServiceHost(typeof(Service1))) { },客户端程序一直无法找到服务
改成:
try
{
ServiceHost host1 = new ServiceHost(typeof(Service1));
。。。
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}