msmq

Multicasting, Messaging, ActiveMQ vs. MSMQ?

Hi all, I'm working on a messaging/notification system for our products. Basic requirements are: Fire and forget Persistent set of messages, possibly updating, to stay there until the sender says to remove them The libraries will be written in C#. Spring.NET just released a milestone build with lots of nice messaging abstraction, ...

Queue alternatives to MSMQ on Windows?

If you want to use a queuing product for durable messaging under Windows, running .NET 2.0 and above, which alternatives to MSMQ exist today? I know of ActiveMQ (http://activemq.apache.org/), and I've seen references to WSMQ (pointing to http://wsmq.net), but the site seems to be down. Are there any other alternatives? ...

MSMQ monitoring

Is there anything which can help with msmq monitoring? I'd like to get some event/monit when a message appears in queue and the same on leave. ...

What is the best free tool for managing MSMQ queues and messages?

Something that allows viewing message contents, copy/paste between queues and other basic explorer like functionality. ...

Can I filter the messages I receive from a message queue (MSMQ) by some property? (a.k.a. topic)

I am creating a Windows Service in C# that processes messages from a queue. I want to give ops the flexibility of partitioning the service in production according to properties of the message. For example, they should be able to say that one instance processes web orders from Customer A, another batch orders from Customer A, a third web ...

WCF MSMQ - How do I handle message failure

I have create a WCF service and am utilising netMsmqBinding binding. This is a simple service that passes a Dto to my service method and does not expect a response. The message is placed in an MSMQ, and once picked up inserted into a database. What is the best method to make sure no data is being lost. I have tried the 2 following met...

Can you use WMI to create an MSMQ message queue (PRIVATE queue)?

I need to create a PRIVATE message queue on a remote machine and I have resolved to fact that I can't do this with the .NET Framework in a straight forward manner. I can create a public message queue on a remote machine, but not a PRIVATE one. I can create a message queue (public or private) locally. I am wondering if anyone knows how ...

What is the Best Way to Dynamically Create an MSMQ Listener?

I was using Spring.NET to create a message listener at application startup. I now need the ability to create 0-n listeners, some of which could be listening to different queues. I will need to be able to create/destroy them at run-time. What would be the best way to go about doing this? My previous spring configuration was something ...

I want to log the Poison message that my wcf service is dropping using MSMQ 3.0 and windows 2003

I want to log the Poison message that my wcf service is dropping using MSMQ 3.0 and windows 2003 ...

MSMQ samples in C++?

Can someone give me some working examples of how you can create, add messages, read from, and destroy a private message queue from C++ APIs? I tried the MSDN pieces of code but i can't make them work properly. Thanks ...

How do I use a remote MSMQ transactionally?

I am writing a Windows service that pulls messages from an MSMQ and posts them to a legacy system (Baan). If the post fails or the machine goes down during the post, I don't want to loose the message. I am therefore using MSMQ transactions. I abort on failure, and I commit on success. When working against a local queue, this code works ...

Performance Testing MSMQ Server

Has anyone done any sort of performance tests against MSMQ? We have a solution in prod environment where errors are added to a MSMQ for distribution to databases or event monitors. We need to test the capacity of this system but not sure how to start. Anyone know any tools or have any tips? ...

Access to remote computer's MSMQ gives "Remote computer is not available"

We have a windows application that runs on a server and accesses 4 other servers (all of them are members in the domain) to get the messages in each of their private queues. We've just installed a new server, and for some reason when the application tries to access that computer, it gets a "Remote computer is not available" message. The ...

How do you specify a message label when using WCF and NetMsmqBinding?

I would like to set the MSMQ message label using the NetMsmqBinding. I understand it’s easy when using the MsmqIntegrationBinding, but I would like to continue to use the NetMsmqBinding (even call private methods, if possible) ...

MSMQ Generic Messaging

I'm thinking of creating a generic message queue to handle various inter-process messages. (WCF is not an option at this point.) So, rather than have 10-15 different queues for specific messages I'd have 1 queue that is a 'catch-all'. Obviously sending messages to this queue is a not a problem. Each recipient would listen to the qu...

How to(if possible) delete message from MSMQ using Computer Management tools. WinXP

Computer Management -> Services and Applications -> Message Queues How to delete some message from specific queue? It seems to me there was some way ... can't find it right now. ...

Architecting a Work Item Processing System with Modified FIFO Semantics in Windows

I’m building a system that generates “work items” that are queued up for back-end processing. I recently completed a system that had the same requirements and came up with an architecture that I don’t feel is optimal and was hoping for some advice for this new system. Work items are queued up centrally and need to be processed in an es...

WCF over MSMQ problem

Hello, I have been tasked to implement a WCF service that makes use of NetMsmqBinding. I wrote the service and it works fine. The problem is that in the last minute they told me that there will be no Active Directory integration. So I don't know how to configure the security of the service. There is a VPN tunnel between the service's an...

Is MSMQ thread safe?

I have multiple processes monitoring an MSMQ queue. I want to do multi-step operations like first peek the message and then based on some criteria receive the message. A single message may pass the receiving criteria of multiple processes so that more than one process may try to receive the same message. Will these operations be thread s...

Should I use MSMQ or SQL Service Broker for transactions?

Hey Stackoverflow, I've been asked by my team leader to investigate MSMQ as an option for the new version of our product. We use SQL Service Broker in our current version. I've done my fair share of experimentation and Googling to find which product is better for my needs, but I thought I'd ask the best site I know for programming answe...