Tagged Questions
Microsoft Message Queuing (MSMQ) is a message queuing implementation developed by Microsoft and deployed as part of its Windows platform since 1996. MSMQ is included on most versions of Windows but it's not installed by default.
43
votes
2answers
8k views
nServiceBus vs Mass Transit vs Rhino Service Bus vs other?
Just doing some quick spikes into possibly using a messaging system to process files that are in a nicely decoupled work flow system.
What are the pro's and cons that people have found of using each ...
14
votes
9answers
2k views
MSMQ v Database Table
An existing process changes the status field of a booking record in a table, in response to user input.
I have another process to write, that will run asynchronously for records with a particular ...
13
votes
4answers
7k views
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, ...
12
votes
6answers
14k views
How do I prevent a WCF service from enter a faulted state?
I have a WCF Service that should not enter the faulted state. If there's an exception, it should be logged and the service should continue uninterrupted. The service has a one-way operation contract ...
12
votes
8answers
5k views
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 ...
11
votes
2answers
8k views
No permission to access a private MSMQ
On an XP machine there is a private messagequeue that was created by a .net service.
When I want to access this private queue in a VB6 application I keep getting an "Access is denied" error.
So it ...
11
votes
3answers
1k views
Including MSMQ as a prerequisite for my application
I'm working on an application that uses MSMQ for interprocess communication, and I need the setup project to be able to install the service if it isn't already. I've checked around for information on ...
11
votes
8answers
12k views
What is Microsoft Message Queuing (MSMQ)? How does it work?
I need to work with (Microsoft Message Queuing )MSMQ. What is meant by MSMQ how it will work?
In what way its is different from webservices.
10
votes
5answers
2k views
How to research unmanaged memory leaks in .NET?
I have a WCF service running over MSMQ. Memory gradually increases over time, indicating that there is some sort of memory leak. I ran the service locally and monitored some counters using PerfMon. ...
10
votes
8answers
5k views
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.
10
votes
5answers
8k views
Multicasting, Messaging, ActiveMQ vs. MSMQ?
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 ...
9
votes
1answer
141 views
Configuring Acknowledgements with Spring.NET
Is there a way to configure Acknowledgements with Spring.NET?
In code it looks like this:
var msgQ = new MessageQueue(OrdersQueueName)
{
DefaultPropertiesToSend =
...
9
votes
3answers
5k views
Implementing a Message Bus architecture
I'm currently doing analysis and design for a new message bus architecture in my company. I have tried MSMQ to do something like this in the past and it works well and was thinking of doing the same ...
8
votes
3answers
541 views
to MSMQ or not to MSMQ? (or SQL Table as the Queue)
I've got a distributed system where there will be 1 SQL Server, 1-n processing servers, and 1-n data suppliers (hardware devices across the network). The data being supplied will require processing ...
8
votes
5answers
3k views
Java and MSMQ
I was curious if anyone had any suggestions on a Java library that provides access to MSMQ? I've downloaded the trial of the J-Integra Java-COM library and have built and run their MSMQ example app, ...
7
votes
3answers
324 views
Local vs. remote queues in pub/sub messaging
If I was building a system with dozens of publishers/subscribers using message queues, it seems I have a few network configuration options:
I could have one clustered broker that all machines use - ...
7
votes
1answer
229 views
Why would two processes have an advantage over 2 threads?
I have an MSMQ based location application, where I receive position updates from units in the field and they are processed and put in a database.
The update process does not have dependencies ...
7
votes
3answers
629 views
MSMQ wcf activation issue with .net 4.0 and server 2008
I have .net 4.0 application ported from net 3.5 that uses net.msmq running on server 2008 x64
Setup
net.msmq Service with address "net.msmq://localhost/private/msmqdataservice.svc"
net.msmq ...
7
votes
1answer
555 views
How-To Mock MSMQ MessageQueue
I want to Unit Test my application which use MSMQ but i found no way in order to Mock MessageQueue objects.
var queuePath = @".\Private$\MyQueue";
MessageQueue queue = null;
...
7
votes
3answers
2k views
What are the advantages of using WCF over frameworks like MassTransit or hand written MSMQ client?
I am looking at using MSMQ as a solution to do asynchronous execution in my upcoming project. I want to know the differences between using WCF and frameworks like MassTransit or even hand written MSMQ ...
7
votes
5answers
5k views
Should I use MSMQ or SQL Service Broker for transactions?
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 ...
6
votes
2answers
209 views
WCF Throttle Settings
I have been working on a proof of concept using WCF and MSMQ. I have been playing around with the throttle settings using the defaults This Article and also adding my own settings to the config file. ...
6
votes
1answer
331 views
Enumerate all outgoing Queues in MSMQ, C#
Using C# and .NET 3.5, how can I get a listing of all outgoing queues in MSMQ? I found this article about it but as you can see below I do not have the COM entry for Microsoft Message Queue 3.0 Object ...
6
votes
2answers
395 views
MSMQ - can a queue survive a queue process restart/server restart
Can an MSMQ queued messages survive a service/server restart? What I mean is that if a queue has messages and the server were to experience a hard restart, would the messages be still available in the ...
6
votes
1answer
776 views
MSMQ scalability
We're looking at setting up a MSMQ system with ~8000 clients and one queue per client. On average the system needs to handle ~2000 messages daily from each client, where the message size will range ...
6
votes
7answers
4k views
Alternatives to NServiceBus that doesn't use MSMQ
I think the title sums it all .... We have a .NET 2.0 system trying to implement a distributed pub/ sub model. I came across NServiceBus, RhinoBus and MassTransit. Unfortunately, these are MSMQ based. ...
6
votes
2answers
410 views
Microsoft Message Queue - priority flag or a separate queue?
I've implemented a system in C# that uses the Microsoft Message Queue (System.Messaging) for communication between related processes. Essentially, a number of Sender services generate messages to put ...
6
votes
8answers
2k views
ASP.NET - best queue system for a new application
My organization is getting ready to implement a new system, which is a asp.net application. The application will have a large queue of offline work that is initiated by the website. This queue will ...
5
votes
2answers
307 views
Reading from MSMQ slows down when there is a lot of messages queued
Short introduction
I have a SEDA based system, and used MSMQ for communication (event triggering) between the different applications/services.
One of these services gets messages by file, so I have ...
5
votes
3answers
690 views
MSMQ: Is it possible to get the message count of a remote private queue?
I know there are other questions on this, but non actually answer this question.
The Code I have is:
using (var mQ = new MessageQueue(qPath))
{
...
5
votes
1answer
148 views
How to do Heroku-like Delayed Jobs in C#.NET?
Would like to implement something similar to this for our C#.NET Web App.
http://devcenter.heroku.com/articles/queueing
What pre-existing solutions are already out there that will work with .NET?
5
votes
5answers
510 views
Why are my queued WCF messages silently disappearing?
I have a transactional MSMQ queue setup on server THOR. I am able to post messages to that queue from a workstation with the following code:
var queue = new ...
5
votes
5answers
254 views
Heavy Asynchronous Processing
I have an application, in it's simplest form, it reads a large number of phone numbers from a database (about 15 million) and sends each number off one line at a time to a url for processing.
I ...
5
votes
2answers
2k views
How to configure MessageEndpointMapping by namespace in NServiceBus
I am trying to configure my message endpoint mapping in my NServiceBus configuration by sending messages from different namespaces to different endpoints.
As such, I have configured the following in ...
5
votes
3answers
1k views
Architecture Queuing asp.NET - MSMQ
Problem: Some 300 candidates make a test using Flex. A test consist of some 100 exercises. After each exercise a .NET service is called to store the result. If a candidate finishes a test, all the ...
5
votes
1answer
1k views
MSMQ backed WCF service hosted in a windows service fails on startup
I have a WCF service hosted in a Windows service that I set to Automatic so it will start automatically when the server is brought up. The service is endpoint is MSMQ backed.
When I start the service ...
5
votes
3answers
1k views
Private or Public MSMQ
We are using Queue for few of are WCF services.
We are using NetMSMQ binding for the WCF services which use Private MSMQ.
The system works OK on our QA environment.
I am not sure of any real ...
5
votes
2answers
583 views
Is MSMQ obsolete?
I've just been chatting with a Microsoft MVP, and he told me that MSMQ is obsolete. Is this true? What's the infrastructure for SOA then???
5
votes
4answers
1k views
Automated MSMQ Setup with Powershell
I am in the process of configuring a new test server for an application I support. It uses around 35 different MSMQ queues and creating these manually is obviously not loads of fun. Especially since ...
5
votes
3answers
652 views
Cant send to MSMQ with 2 DNS names
Having an issue with sending an MSMQ message to the second DNS name on a server. If we send the IP for that same server, we're fine, but thats not where we are going architecturally. Any ideas as to ...
5
votes
2answers
4k views
Setting permissions on a MSMQ queue in script
Can anyone give me some pointers on how to set permissions on MSMQ queues in script, preferably PowerShell, but I'd use VBscript
5
votes
2answers
3k views
5
votes
1answer
822 views
MSMQ vs Temporary Table Dump
I know this question has been asked a bit before. But looking around I still cant make my mind up which route I should go down. Here's my scenario, hopefully you can help out:
We will have a series ...
5
votes
4answers
2k views
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 ...
4
votes
1answer
39 views
How to implement a compenting consumer solution?
As a exercise I'm trying to find an example which implements competing consumer.
many producers - > MSMQueue <- competing consumers
So far I did not find any documentation on how to achieve ...
4
votes
1answer
91 views
How can I change the priority of a message in MSMQ?
I'm having a problem changing the priority of an message which is submitted to a defined MSMQ.
Whenever I set the Message priority it never seems to affect the priority of the message within the queue
...
4
votes
1answer
531 views
How to use SignalR to notify web clients from ASP.NET MVC 3 that MSMQ tasks were completed
How would one use SignalR to implement notifications in an .NET 4.0 system that consists of an ASP.NET MVC 3 application (which uses forms authentication), SQL Server 2008 database and an MSMQ WCF ...
4
votes
3answers
136 views
MSMQ for persistence?
In my project I receive a transaction from the client then process it and return a status back to the client via WCF. As you know I have to somehow save the transaction for recovery purposes and ...
4
votes
2answers
86 views
Message queueing solution for internet-connected, distributed C# clients
I am in the initial phase of investigating a message queueing solution for C# and I'd appreciate any experience, lessons learned, war stories, etc. I also have a couple of specific questions about ...
4
votes
1answer
187 views
MSMQ is a good choice?
I'm doing some test messaging, and so far the MSMQ is the choice, especially for support in Mass Transit.
But there are other options, ActiveMQ, RabbitMQ are some examples. Has anyone had problems ...