ASP.NET中进行消息处理(MSMQ) 一

MSMQ是微软消息队列的英文缩写。那么什么是消息队列?这些介绍网上一大片这里就不多说了。本文对于大虾级的人物来说这只是小玩意而已,对于初学者来说这文章还是有一定的帮助,希望路过的大虾们别笑话我班门弄斧。

一、MSMQ介绍和安装消息队列
      关于MSMQ详细的介绍请大家向http://www.baidu.com/http://www.g.cn/等专家咨询。
      使用消息队列的优点:稳定、消息优先级、脱机能力以及安全性。
      消息队列分为用户创建的队列(专用队列)和系统队列,用户队列分为,。我是Windows XP,看下图所示(myQueue为自己创建的消息队列,msmqtriggersnotifiations为通用队列):
               技术分享

     对消息队列有了简单的了解后,使用MSMQ进行软件开发需要安装MSMQ,安装完后就该进入实际的开发阶段。具体的安装过程就是在控制面板里“添加/删除程序”下“添加/删除Windows组件”,完成添加就OK。安装完成后就可以通过交互界添加新的消息队列,详细如下图:
          技术分享
      出了上面这种交互界面来创建MSMQ外,也可以通过编程来完成,.NET框架里的MessageQueue类下有一静态方法Create,用来完成消息队列的创建,其定义如下:

技术分享
 1技术分享//
 2技术分享// 摘要:
 3技术分享//    在指定的路径中创建非事务性“消息队列”队列。
 4技术分享//
 5技术分享// 参数:
 6技术分享//   path:
 7技术分享//     要创建的队列的路径。
 8技术分享//
 9技术分享// 返回结果:
10技术分享//     表示新队列的 System.Messaging.MessageQueue。
11技术分享public static MessageQueue Create(string path);
12技术分享//
13技术分享// 摘要:
14技术分享//     在指定的路径中创建事务性或非事务性“消息队列”队列。
15技术分享//
16技术分享// 参数:
17技术分享//   transactional:
18技术分享//     如果创建事务性队列,为 true;如果创建非事务性队列,则为 false。
19技术分享//
20技术分享//   path:
21技术分享//     要创建的队列的路径。
22技术分享//
23技术分享// 返回结果:
24技术分享//     表示新队列的 System.Messaging.MessageQueue。
25技术分享public static MessageQueue Create(string path, bool transactional);
技术分享


     实现消息队列的创建简单代码(C#),创建一个名为"myQueue"的非事务性"消息队列",如下:

技术分享MessageQueue.Create(@".\private$\myQueue");


二、创建、删除和管理队列
      在.NET环境下编写Message Queue程序的前提就是需要先安装MSMQ,本文之前已经作了详细的介绍。要开发MSMQ程序就必须学习一个很重要的类(MessageQueue),该类位于名称空间System.Messageing下。其中有几个常用的方法必须掌握:
  --Create方法:创建使用指定路径的新消息队列。
  --Delete方法:删除现有的消息队列。
  --Existe方法:查看指定消息队列是否存在。
  --GetAllMessages()方法:得到队列中的所有消息。
  --GetPublicQueues方法:在“消息队列”网络中定位消息队列。
  --Peek/BeginPeek方法:查看某个特定队列中的消息队列,但不从该队列中移出消息。
  --Receive/BeginReceive方法:检索指定消息队列中最前面的消息并将其从该队列中移除。
  --Send方法:发送消息到指定的消息队列。
  --Purge方法:清空指定队列的消息。

    上述列举的方法在此就不作详细介绍,大家可以通过下面的示例程序中来体会他们各自的功能。

三、发送和序列化消息
     MSMQ消息队列中定义的消息由一个主体(body)和若干属性构成。消息的主体可以由文本、二进制构成,根据需要还可以被加密。在MSMQ 中消息的大小不能够超过4MB。发送消息是通过Send方法来完成的,需要一个Message参数。
1、发送消息:
     步骤:连接队列-->指定消息格式-->提供要发送的数据(主体)-->调用Send()方法将消息发送出去。详细见后面的示例程序。
     
2、序列化消息:
     消息序列化可以通过.NET Framework附带的三个预定义格式化程序来完成:
    --  XMLMessageFormatter对象----MessageQueue组件的默认格式化程序设置。
    --  BinaryMessageFormatter对象;
    --  ActiveXMessageFormatter对象; 
    由于后两者格式化后的消息通常不能为人阅读,所以我们经常用到的是XMLMessageFormatter对象。该对象构造方法有三种重载:

1技术分享public XmlMessageFormatter();
2技术分享public XmlMessageFormatter(string[] targetTypeNames);
3技术分享public XmlMessageFormatter(Type[] targetTypes);

如我们后面的示例程序中用到的序列化语句:

1技术分享//序列化为字符串
2技术分享XmlMessageFormatter formatter = new XmlMessageFormatter(new Type[] { typeof(string) });


四、读取和接收消息
1、读取消息:
    也就是从指定队列中获取消息,详细请查看本文前面的关于消息操作的方法介绍。
2、接收消息有两种方式:
    --> 通过Receive方法--具体功能请返回本文前面有详细介绍。
    --> 通过Peek方法--具体功能请返回本文前面有详细介绍。

五、消息使用实例
     通过上面一系列的介绍,了解了MessageQueue类和常用的方法后,下面我们通过一个简单的示例程序来分析消息队列的创建、发送消息以及接收消息等相关知识点:
1、通过Create方法创建使用指定路径的新消息队列

技术分享
 1技术分享/// <summary>
 2技术分享/// 通过Create方法创建使用指定路径的新消息队列
 3技术分享/// </summary>
 4技术分享/// <param name="queuePath"></param>
 5技术分享public static void Createqueue(string queuePath)
 6技术分享{
 7技术分享    try
 8技术分享    {
 9技术分享        if (!MessageQueue.Exists(queuePath))
10技术分享        {
11技术分享            MessageQueue.Create(@".\private$\myQueue");
12技术分享        }
13技术分享        else
14技术分享        {
15技术分享            Console.WriteLine(queuePath + "已经存在!");
16技术分享        }
17技术分享    }
18技术分享    catch (MessageQueueException e)
19技术分享    {
20技术分享        Console.WriteLine(e.Message);
21技术分享    }
22技术分享}
技术分享


2、连接消息队列并发送消息到队列

技术分享
 1技术分享/// <summary>
 2技术分享/// 连接消息队列并发送消息到队列
 3技术分享/// </summary>
 4技术分享public static void SendMessage()
 5技术分享{
 6技术分享    try
 7技术分享    {
 8技术分享        //连接到本地的队列
 9技术分享        MessageQueue myQueue = new MessageQueue(".\\private$\\myQueue");
10技术分享        
11技术分享        Message myMessage = new Message();
12技术分享        myMessage.Body = "消息内容";
13技术分享        myMessage.Formatter = new XmlMessageFormatter(new Type[] { typeof(string) });
14技术分享        //发送消息到队列中
15技术分享        myQueue.Send(myMessage);
16技术分享    }
17技术分享    catch (ArgumentException e)
18技术分享    {
19技术分享        Console.WriteLine(e.Message);
20技术分享    }
21技术分享}
技术分享


3、连接消息队列并从消息队列中接收消息

技术分享
 1技术分享/// <summary>
 2技术分享/// 连接消息队列并从队列中接收消息
 3技术分享/// </summary>
 4技术分享public static void ReceiveMessage()
 5技术分享{
 6技术分享    //连接到本地队列
 7技术分享    MessageQueue myQueue = new MessageQueue(".\\private$\\myQueue");
 8技术分享    myQueue.Formatter = new XmlMessageFormatter(new Type[] { typeof(string) });
 9技术分享    try
10技术分享    {
11技术分享        //从队列中接收消息
12技术分享        Message myMessage = myQueue.Receive();
13技术分享        string context = (string)myMessage.Body; //获取消息的内容
14技术分享        Console.WriteLine("消息内容为:" + context);
15技术分享    }
16技术分享    catch (MessageQueueException e)
17技术分享    {
18技术分享        Console.WriteLine(e.Message);
19技术分享    }
20技术分享    catch (InvalidCastException e)
21技术分享    {
22技术分享        Console.WriteLine(e.Message);
23技术分享    }
24技术分享}
技术分享


4、连接队列并清空队列的全部消息

技术分享
1技术分享/// <summary>
2技术分享/// 清空指定队列的消息
3技术分享/// </summary>
4技术分享public static void ClearMessage()
5技术分享{
6技术分享    MessageQueue myQueue = new MessageQueue(".\\private$\\myQueue");
7技术分享    myQueue.Purge();
8技术分享}
技术分享


5、连接队列并获取队列的全部消息

技术分享
 1技术分享/// <summary>
 2技术分享/// 连接队列并获取队列的全部消息
 3技术分享/// </summary>
 4技术分享public static void GetAllMessage()
 5技术分享{
 6技术分享    //连接到本地队列
 7技术分享    MessageQueue myQueue = new MessageQueue(".\\private$\\myQueue");
 8技术分享    Message[] message = myQueue.GetAllMessages();
 9技术分享    XmlMessageFormatter formatter = new XmlMessageFormatter(new Type[] { typeof(string) });
10技术分享    for (int i = 0; i < message.Length; i++)
11技术分享    {
12技术分享        message[i].Formatter = formatter;
13技术分享        Console.WriteLine(message[i].Body.ToString());
14技术分享    }
15技术分享}
技术分享


     上面依次的列举出来5个方法,这里我就不做测试了。上述方法全部通过测试的,我在后面提供个连接,没弄清楚的朋友可下载源程序自己去运行调试下。

技术分享本实例完整代码


六、复杂消息发送实例
     通过上面一系列的介绍,对于简单消息的发送和接收及消息的管理应该都不会有什么问题了,下面我在介绍一下关于复杂的消息处理,现在有这样一个需求,要求通过消息队列将一本图书信息发送到队列里,然后从消息队列里读取出来。图书的基本信息包括图书编号、图书名称、图书作者以及图书定价,这样的一个复杂的对象类型怎么来传输呢?详细如下:

技术分享Book对象

 

技术分享
 1技术分享namespace MSMQ.App
 2技术分享{
 3技术分享    public class MsgQueue
 4技术分享    {
 5技术分享        /// <summary>
 6技术分享        /// 通过Create方法创建使用指定路径的新消息队列
 7技术分享        /// </summary>
 8技术分享        /// <param name="queuePath"></param>
 9技术分享        public static void Createqueue(string queuePath)
10技术分享        {
11技术分享            try
12技术分享            {
13技术分享                if (!MessageQueue.Exists(queuePath))
14技术分享                {
15技术分享                    MessageQueue.Create(@".\private$\myQueue");
16技术分享                    MessageBox.Show("创建队列成功!");
17技术分享                }
18技术分享                else
19技术分享                {
20技术分享                    MessageBox.Show(queuePath + "已经存在!");
21技术分享                }
22技术分享            }
23技术分享            catch (MessageQueueException e)
24技术分享            {
25技术分享                MessageBox.Show(e.Message);
26技术分享            }
27技术分享        }
28技术分享
29技术分享        /// <summary>
30技术分享        /// 连接消息队列并发送消息到队列
31技术分享        /// </summary>
32技术分享        public static bool SendMessage(Book book)
33技术分享        {
34技术分享            bool flag = false;
35技术分享            try
36技术分享            {
37技术分享                //连接到本地的队列
38技术分享                MessageQueue myQueue = new MessageQueue(".\\private$\\myQueue");
39技术分享
40技术分享                System.Messaging.Message myMessage = new System.Messaging.Message();
41技术分享                myMessage.Body = book;
42技术分享                myMessage.Formatter = new XmlMessageFormatter(new Type[] { typeof(MSMQ.App.Book) });
43技术分享                //发送消息到队列中
44技术分享                myQueue.Send(myMessage);
45技术分享                flag = true;
46技术分享            }
47技术分享            catch (ArgumentException e)
48技术分享            {
49技术分享                MessageBox.Show(e.Message);
50技术分享            }
51技术分享            return flag;
52技术分享        }
53技术分享
54技术分享        /// <summary>
55技术分享        /// 连接消息队列并从队列中接收消息
56技术分享        /// </summary>
57技术分享        public static string ReceiveMessage()
58技术分享        {
59技术分享            //连接到本地队列
60技术分享            MessageQueue myQueue = new MessageQueue(".\\private$\\myQueue");
61技术分享            myQueue.Formatter = new XmlMessageFormatter(new Type[] { typeof(MSMQ.App.Book) });
62技术分享            try
63技术分享            {
64技术分享                //从队列中接收消息
65技术分享                System.Messaging.Message myMessage = myQueue.Receive();
66技术分享                Book book = (Book)myMessage.Body; //获取消息的内容
67技术分享                return string.Format("编号:{0},书名:{1},作者:{2},定价:{3}",
68技术分享                    book.BookId,
69技术分享                    book.BookName,
70技术分享                    book.BookAuthor,
71技术分享                    book.BookPrice);
72技术分享            }
73技术分享            catch (MessageQueueException e)
74技术分享            {
75技术分享                MessageBox.Show(e.Message);
76技术分享            }
77技术分享            catch (InvalidCastException e)
78技术分享            {
79技术分享                MessageBox.Show(e.Message);
80技术分享            }
81技术分享            return null;
82技术分享        }
83技术分享    }
84技术分享}
技术分享


     其实发送复杂的消息也就是在消息序列化上有些差别,别的地方与发送普通文本消息没什么大的变化,上面类里提供了创建队列,发送消息到队列,从队列获取消息三个方法,测试结果如下:
                                 技术分享
     上示例中,完成了一个复杂类型的消息发送到队列及从队列中读取的演义,详细请下载代码查看:
   点击这里下载本文示例代码

     本文就简单介绍于此,更深入的学习MSMQ请查阅相关资料(如PetShop4里的定单处理策略)。
相关文章连接:

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。