MSMQ Trigger on Windows 2003 not firing
I'm having a strange issue with an MSMQ trigger. This is what I've done.
- On Windows Server 2003 I've installed MSMQ
- I then installed MSMQ triggers
- I created a private queue called "TestQueue"
- I created the rule as follows:
- Name: "TestRule"
- Condition: "Message label contains '-'" (All my message labels contain '-')
- Invoke standalone exe: "C:\WINDOWS\NOTEPAD.EXE"
- I then created a trigger as follows:
- Name: "TestTrigger"
- User queue: ".\Private$\TestQueue
- Peeking a开发者_开发问答nd enabled set
- Attached the "TestRule" rule
I then have a console application that puts a message on the "TestQueue" (I can see the message on the queue), However the trigger does not start NOTEPAD.exe (I've been monitoring task manager to make sure)
Does anyone know why the trigger would not be firing?
Ended up getting a clean install of Windows 2003 and re-installed MSMQ and it now works.
精彩评论