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

扩展方法检测客户端队列是否存在

时间:2014-10-29 12:29:21      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   使用   for   sp   文件   

public static class QeuedServiceHelper
    {
        public static void VerifyQeues()
        {
            Configuration config = ConfigurationManager.OpenExeConfiguration
                (ConfigurationUserLevel.None);
            ServiceModelSectionGroup  group=ServiceModelSectionGroup.GetSectionGroup(config);
            foreach(ChannelEndpointElement endPoint in group.Client.Endpoints )
            {
                if (endPoint.Binding == "netMsmqBinding")
                {
                    string queue = GetQueueFromUri(endPoint.Address);
                    if (MessageQueue.Exists(queue) == false)
                    {
                        MessageQueue.Create(queue);
                    }
                }
            }
        }
    }
}

使用ConfigurationManager提供了类型安全的方法来解析配置文件。它会加载WCF的配置数据(在ServiceModel     SectionGroup里),然后遍历所有的终结点。对于每个使用MSMQ绑定的终结点,VerifyQueue()会在必要时创建队列

 

以上方法也可以简化为:

            QeuedServiceHelper.VerifyQeues();
            MyContractClient proxy = new MyContractClient();
            proxy.MyMeThod();
            proxy.close();

应该注意的是客户端在发出队列调用之前调用QeuedServiceHelper.VerifyQeues(); 一次

扩展方法检测客户端队列是否存在

标签:style   blog   io   color   os   使用   for   sp   文件   

原文地址:http://www.cnblogs.com/running-mydream/p/4059012.html

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