c# - 在 Windows 服务中处理 MSMQ 消息

标签 c# .net wcf windows-services msmq

我有一个用于处理 MSMQ 消息的 Windows 服务。它依赖于以下逻辑

· windows服务中有一个定时器。每十分钟它会执行名为“ProcessMessages”的方法。

· 在这个方法中,它首先通过调用队列的 GetAllMessages 方法创建一个现有 messageIds 的列表。

· 对于每个messageId,它接收消息(使用ReceiveById)并将其存储到一个文件中

有没有更好的方法来实现消息处理?

引用:http://www.switchonthecode.com/tutorials/creating-a-simple-windows-service-in-csharp

注意:当我把它作为服务时,下面的代码并没有给出想要的结果;但是事件查看器中没有错误(我没有做任何显式日志记录)。当它是一个简单的控制台应用程序时,它运行良好。如何纠正? [现在当我将帐户更改为“用户”时它正在工作,如下面的评论所示]

我的 actaul 要求是在固定的时间段处理所有消息——比如仅在上午 10 点和上午 11 点(每天)。最好的方法是什么?

namespace ConsoleSwitchApp
{
    class Program : ServiceBase
    {
        private static Timer scheduleTimer = null;
        static MessageQueue helpRequestQueue = null;
        static System.Messaging.XmlMessageFormatter stringFormatter = null;

        static void Main(string[] args)
        {
            ServiceBase.Run(new Program());
        }

        public Program()
        {
            this.ServiceName = "LijosService6";

            //Queue initialize
            helpRequestQueue = new MessageQueue(@".\Private$\MyPrivateQueue", false);
            stringFormatter = new System.Messaging.XmlMessageFormatter(new string[] { "System.String" });

            //Set Message Filters
            MessagePropertyFilter filter = new MessagePropertyFilter();
            filter.ClearAll();
            filter.Body = true;
            filter.Label = true;
            filter.Priority = true;
            filter.Id = true;
            helpRequestQueue.MessageReadPropertyFilter = filter;

            //Start a timer
            scheduleTimer = new Timer();
            scheduleTimer.Enabled = true;
            scheduleTimer.Interval = 120000;//2 mins
            scheduleTimer.AutoReset = true;
            scheduleTimer.Start();
            scheduleTimer.Elapsed += new ElapsedEventHandler(scheduleTimer_Elapsed);
        }

        protected static void scheduleTimer_Elapsed(object sender, ElapsedEventArgs e)
        {
            ProcessMessages();
        }

        private static void ProcessMessages()
        {
            string messageString = "1";

            //Message Processing
            List<string> messageIdList = GetAllMessageId();
            foreach (string messageId in messageIdList)
            {
                System.Messaging.Message messages = helpRequestQueue.ReceiveById(messageId);
                //Store the message into database

                messages.Formatter = stringFormatter;
                string messageBody = System.Convert.ToString(messages.Body);

                if (String.IsNullOrEmpty(messageString))
                {
                    messageString = messageBody;
                }
                else
                {
                    messageString = messageString + "___________" + messageBody;
                }
            }

            //Write File
            string lines = DateTime.Now.ToString();
            lines = lines.Replace("/", "-");
            lines = lines.Replace(":", "_");
            System.IO.StreamWriter file = new System.IO.StreamWriter("c:\\test" + lines + ".txt");
            file.WriteLine(messageString);
            file.Close();
        }

        private static List<string> GetAllMessageId()
        {
            List<string> messageIdList = new List<string>();

            DataTable messageTable = new DataTable();
            messageTable.Columns.Add("Label");
            messageTable.Columns.Add("Body");

            //Get All Messages
            System.Messaging.Message[] messages = helpRequestQueue.GetAllMessages();
            for (int index = 0; index < messages.Length; index++)
            {
                string messageId = (System.Convert.ToString(messages[index].Id));
                messageIdList.Add(messageId);

                messages[index].Formatter = stringFormatter;
                messageTable.Rows.Add(new string[] { messages[index].Label, messages[index].Body.ToString() });
            }

            return messageIdList;
        }


        protected override void OnStart(string[] args)
        {
            base.OnStart(args);
        }

        protected override void OnStop()
        {
            base.OnStop();
        }
    }
}

namespace ConsoleSwitchApp
{
    [RunInstaller(true)]
    public class MyWindowsServiceInstaller : Installer
    {
        public MyWindowsServiceInstaller()
        {
            var processInstaller = new ServiceProcessInstaller();
            var serviceInstaller = new ServiceInstaller();

            //set the privileges
            processInstaller.Account = ServiceAccount.LocalSystem;
            serviceInstaller.DisplayName = "LijosService6";
            serviceInstaller.StartType = ServiceStartMode.Manual;

            //must be the same as what was set in Program's constructor

           serviceInstaller.ServiceName = "LijosService6";

            this.Installers.Add(processInstaller);
            this.Installers.Add(serviceInstaller);
        }
    }
}

最佳答案

使用计时器的一个不错的替代方法是使用 MessageQueue.BeginReceive方法并在 ReceiveCompleted 事件中工作。这样您的代码将一直等到队列中有消息,然后立即处理该消息,然后检查下一条消息。

一个简短的 stub (链接的 MSDN 文章中的完整示例。)

private void Start()
{
    MessageQueue myQueue = new MessageQueue(".\\myQueue");

    myQueue.ReceiveCompleted += 
        new ReceiveCompletedEventHandler(MyReceiveCompleted);

    myQueue.BeginReceive();
}

private static void MyReceiveCompleted(Object source, 
    ReceiveCompletedEventArgs asyncResult)
{
    try
    {
        MessageQueue mq = (MessageQueue)source;
        Message m = mq.EndReceive(asyncResult.AsyncResult);

        // TODO: Process the m message here

        // Restart the asynchronous receive operation.
        mq.BeginReceive();
    }
    catch(MessageQueueException)
    {
        // Handle sources of MessageQueueException.
    }

    return; 
}

关于c# - 在 Windows 服务中处理 MSMQ 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9911804/

相关文章:

.net - 在 .NET 中调用 Haskell 函数

wcf - 413 Request Entity Too Large in wcf 服务上传大图片文件时

c# - 即使在 using 语句中,FileStream 也不会关闭

database - 通过 WCF 公开 DTO 时的不同类型的 Id

c# - 是否可以监听具有多个azure功能的服务总线?

c# - "Object reference not set to an instance of an object"初始化多维数组时

c# - System.Environment.UserName 可以轻易伪造吗?

c# - 如何获取 HTML 文本框的值?

c# - 在异步方法中不等待任务的注意事项

c# - C# 中的泛型类型转换