G
Gregory Gadow
I am looking for a networkwide messaging system to announce server
reboots, etc. To implement various custom features, I would much rather
roll my own than use an out-of-the-box type of app. Because my company
has a very strict, industry regulated archival policy, I would like to
avoid using email (which relies on the user having Outlook up and
running anyway, not always a safe bet.)
Using VB.NET 2.0, I've written an app that uses MSMQ to send text on a
message queue and a service that monitors the queue and displays the
message as a balloon tip from the tray. This works great, as the balloon
tips are always on top and do not take focus away from what the user is
doing at the moment. The only problem is that queues seem to be a
one-to-one transmittal. If I have three or four machines monitoring the
queue, the first one to grab the message will display it while the other
machines remain silent.
1) Is there a way to configure message queues to send one-to-all?
2) Is there a different mechanism for making system-wide announcements
than queues, and if so, could someone point me to a .NET code example?
(I can translate from C# if I need to.)
Thanks for the help.
reboots, etc. To implement various custom features, I would much rather
roll my own than use an out-of-the-box type of app. Because my company
has a very strict, industry regulated archival policy, I would like to
avoid using email (which relies on the user having Outlook up and
running anyway, not always a safe bet.)
Using VB.NET 2.0, I've written an app that uses MSMQ to send text on a
message queue and a service that monitors the queue and displays the
message as a balloon tip from the tray. This works great, as the balloon
tips are always on top and do not take focus away from what the user is
doing at the moment. The only problem is that queues seem to be a
one-to-one transmittal. If I have three or four machines monitoring the
queue, the first one to grab the message will display it while the other
machines remain silent.
1) Is there a way to configure message queues to send one-to-all?
2) Is there a different mechanism for making system-wide announcements
than queues, and if so, could someone point me to a .NET code example?
(I can translate from C# if I need to.)
Thanks for the help.