MSMQ触发器未触发在Windows 8中执行控制台应用程序

时间:2015-01-27 22:08:18

标签: message-queue msmq

我有一个控制台应用程序,只在执行时写入日志文件(作为测试) 最终它将使用来自MSMQ的消息发送的数据进行处理。 当我将消息发送到队列时,我看到它们。 但他们总是留在那里。

在Windows中运行Message Queue和Message Trigger Service 控制台应用程序是一个主要方法的exe,如下所示:

static void Main(string[] args)
{
    _log.Debug("# of Args: " + args.Length);
                foreach (string str in args)
                {
                    _log.Debug("arg=" + str);
                }
}

我将MessageBody,Id等作为参数发送到控制台应用

我做错了什么导致触发器不会在我的队列中触发?

触发信息:

enter image description here

enter image description here enter image description here

enter image description here

0 个答案:

没有答案