8
votes
9answers
530 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 …
6
votes
5answers
2k views
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 …
5
votes
1answer
296 views
MSMQ vs Temporary Table Dump
Hi Guys,
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 …
5
votes
4answers
2k 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, …
4
votes
2answers
425 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 …
4
votes
2answers
213 views
Need help to decide what is the best solution to tracking system (.NET)
Hello people ! That is my first question around here, my name is Anna!
My problem:
My client has several personal devices (blackbox with gps) to locate people/car... There are about 12000 people/car …
4
votes
2answers
330 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 …
4
votes
4answers
609 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
6answers
1k 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 …
3
votes
1answer
79 views
How-To Mock MSMQ MessageQueue
Hi,
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;
…
3
votes
5answers
207 views
Is the any free library that implements message queuing similar to MSMQ (Microsoft Message Queuing)?
I am interested in using a free library that has features similar to MSMQ to send/receive messages among 3 app domains in a win form application.
I only need the private queue functionality (No public …
3
votes
1answer
103 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 …
3
votes
5answers
105 views
Should I put Images on MSMQ
For one of our application we are thinking of putting scanned images onto MSMQ sizing 10-12k and roughly around 15000 images throughout the day (150 MB).
Does anyone think there could be possible …
3
votes
4answers
184 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 …
3
votes
3answers
290 views
Is MSMQ a good idea
System A captures X information from users via UI. This information is validated and persisted in a database. The user can change, add or delete the information. I have to keep this X information is …
