Top "Message-queue" questions

"Message queue" is a design pattern or software engineering component that defines discipline or API for communication between two or more interrelated processes or systems.

Message Queue Error: cannot find a formatter capable of reading message

I'm writing messages to a Message Queue in C# as follows: queue.Send(new Message("message")); I'm trying to read …

c# message-queue
How to hold messages in JMS Message Queue if there are any error after consuming the message?

My scenario is - I post message in to queue and once message is consumed I am sending it to …

java jms message-queue middleware
How do I browse a Websphere MQ message without removing it?

I'm writing a .NET Windows Forms application that will post a message to a Websphere MQ queue and then poll …

.net message-queue ibm-mq
Stats/Monitor/Inspector for beanstalkd

Does anyone know of an app that can monitor a beanstalkd queue? I'm looking for something that shows stats on …

monitoring message-queue beanstalkd job-queue
SendMessage and PostMessage which one is better to use?

searching the web for the difference between these two function calls, I've found that: The difference between these two API …

visual-studio-2010 performance mfc message-queue sendmessage
In which domains are message oriented middleware like AMQP useful?

What problem do MOM (Message Oriented Middleware) solve? Scalability? Integration? In which domain are they typically used and in which …

message-queue amqp mom
Message queue system

I am in the process of writing a message queue system. My question is... Is it better to do this …

c# queue message-queue
Is there any recommended lightweight pubsub service/library?

I'm building a small system that contains many parts and I want to use a message pub/sub service to …

c++ linux static-libraries message-queue publish-subscribe
Persistent Work Queue in C#

Imagine I want to have a small network of worker drones possibly on separate threads and possibly on separate processes …

c# .net queue message-queue
Using POSIX message queues instead of TCP sockets - how to establish "connection"?

I have client and server programs which now communicate via TCP. I'm trying out using POSIX message queues instead (in …

c connection client-server posix message-queue