码迷,mamicode.com
首页 > 其他好文 > 详细

WCF批量打开服务

时间:2015-02-26 18:31:04      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

WCF服务。利用循环,读取配置文件,一次性将所有的服务全部开启

 public void hostopen()
        {
            Configuration conf = ConfigurationManager.OpenExeConfiguration(Assembly.GetEntryAssembly().Location);
            ServiceModelSectionGroup svcmod = (ServiceModelSectionGroup)conf.GetSectionGroup("system.serviceModel");
             foreach (ServiceElement el in svcmod.Services.Services)
             {
                 Type svcType = Type.GetType(el.Name + "," + "Wcf_DaBu_Service");
                 if (svcType == null)
                     throw new Exception("Invalid Service Type " + el.Name + " in configuration file.");
                 ServiceHost aServiceHost = new ServiceHost(svcType);
                 aServiceHost.Open();
                 MessageBox.Show(el.Name + "+iiiiiii");
            }
        }

 

WCF批量打开服务

标签:

原文地址:http://www.cnblogs.com/chcong/p/4301763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!