Tagged Questions

Messaging refers to the design pattern whereby discrete messages are used for communication between objects or processes. Messages can be simple data, complex data structures, or even code. This pattern is often used for asynchronous or parallel computing.

learn more… | top users | synonyms

25
votes
10answers
6k views

what is JMS good for?

I'm looking for (simple) examples of problems for which JMS is a good solution, and also reasons why JMS is a good solution in these cases. In the past I've simply used the database as a means of ...
17
votes
4answers
10k views

Difference between a Message Broker and an ESB

I have gone through different questions/articles on Message Brokers and ESBs(Even on stackoverflow). Still not a clue as what is the CLEAR demarcating difference between an Message Broker and an ESB? ...
16
votes
5answers
6k views

When to use Spring Integration vs. Camel?

As a seasoned Spring user I was assuming that Spring Integration would make the most sense in a recent project requiring some (JMS) messaging capabilities (more details). After some days working with ...
16
votes
1answer
1k views

Is anyone using Google protocol buffers in large scale production applications?

Is anyone using Google's protocol buffers in large scale applications in production. What is the experience that people have had?
15
votes
4answers
10k views

How to send image via MMS in Android?

I am working on a multimedia application. I am capturing one image through the camera and want to send that image with a text to some other number. But I am not getting how to send the image via the ...
13
votes
3answers
748 views

Are Erlang/OTP messages reliable? Can messages be duplicated?

Long version: I'm new to erlang, and considering using it for a scalable architecture. I've found many proponents of the platform touting its reliability and fault tolerance. However, I'm ...
12
votes
3answers
321 views

Getting the most recent message in a thread

I have a query that gets all the info I need for a messaging system's main page (including unread message count, etc)... but it currently retrieves the original threads message. I would like to ...
12
votes
4answers
530 views

Is message priority inherently unimportant in message queue systems?

It seems like most of the messaging systems I've looked at have basic, if any, support for priority message queues. For example, the AMQP only specifies a minimum of 2 priorities. RabbitMQ, an AMQP ...
12
votes
6answers
736 views

Can someone explain an Enterprise Service Bus to me in non-buzzspeak?

Some of our partners are telling us that our software needs to interact with an Enterprise Service Bus. After researching this a bit, my instinct is to say that this is just buzz speak for saying ...
12
votes
6answers
5k views

Why use AMQP/ZeroMQ/RabbitMQ

as opposed to writing your own library. Were working on a project here that will be a self dividing server pool, if one section grows too heavy, the manager would divide it and put it on another ...
12
votes
7answers
3k views

.net service bus recommendations? [closed]

We are in need of a distributed architecture messaging system/service bus with the capability of Publish/Subscribe. Does anyone have any reccomendations for a framework that we can use for .net ...
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
4answers
415 views

Good resources to learn about Event Driven Architecture

Looking for books, blogs, web sites or videos. At the moment I am getting a lot of value from the blogs of Udi Dahan and Greg Young, but I was wondering if there are any other experts out there worth ...
11
votes
5answers
6k views

Message Oriented Middleware (MoM) Vs. Enterprise Service Bus (ESB)

I come from a background of MoM. I think I understand ESB conceptually. However, I'm not too sure about the practical differences between the two when it comes to making a choice architecturally. ...
10
votes
4answers
354 views

Pause a thread for less than one millisecond

In a messaging client test application, the producer thread needs to be throttled to avoid flooding the server. As the transfer rates are around 25,000 messages per second (40 microseconds per ...
10
votes
4answers
828 views

Fastest reliable way for Clojure (Java) and Ruby apps to communicate

We have cloud-hosted (RackSpace cloud) Ruby and Java apps that will interact as follows: Ruby app sends a request to Java app. Request consists of map structure containing strings, integers, other ...
10
votes
2answers
3k views

Spread vs MPI vs zeromq?

In one of the answers to Broadcast like UDP with the Reliability of TCP, a user mentions the Spread messaging API. I've also run across one called ØMQ. I also have some familiarity with MPI. So, ...
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
2answers
3k views

Java Messaging : Difference between ActiveMQ, Mule, ServiceMix and Camel

I am new to Messaging and want to know the difference between ActiveMQ, Mule, ServiceMix and Camel Anyone knows how each of these product is different? Thanks in advance ! EDIT: Also would like to ...
9
votes
3answers
3k views

Lightweight persistent message queue for Linux?

Is there a (preferably no cost) message queuing solution for Linux that has disk-based persistence (e.g. can survive a reboot)? I'm looking for something equivalent to MSMQ on Windows, fairly basic ...
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
2answers
2k views

Is ZeroMQ production ready?

What are your experiences with ZeroMQ as a general purpose messaging middleware? Did you run into any show-stopping bugs or non-obvious "features"? E.g. 2.0 was not flushing messages properly, and ...
8
votes
4answers
2k views

Objective C calling method dynamically with a string

Im just wondering whether there is a way to call a method where i build the name of the method on the fly with a string. e.g. I have a method called loaddata -(void)loadData; to call this i would ...
8
votes
5answers
5k views

JMS Messaging Performance: Lots of Topics/Queues vs. Extensive Filtering (Message Selectors)

I'm working on a project that is going to make heavy use of JBoss Messaging (JMS). I'm tasked with building an easy to use wrapper around Messaging for other developers and am thinking about using ...
8
votes
6answers
3k views

API to determine cell carrier?

Is there a free API or some other way to determine what carrier a cell phone number is registered with? I'd like my application to broadcast text messages without them picking their carrier from a ...
8
votes
5answers
2k views

What kind of technologies are available for sending text messages?

I'm looking into sending regular automated text-messages to a list of subscribed users. Having played with Windows Mobile devices, I could easily implement this using the compact .Net framework + a ...
8
votes
11answers
8k views

Tool for posting test messages onto a JMS queue?

Can anyone recommend a tool for quickly posting test messages onto a JMS queue? The tool should allow the user to enter some data, perhaps an XML payload, and then submit it to a queue? I know I could ...
7
votes
3answers
321 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
1k views

Java JMS Messaging

I have a working example of sending message to server and server receiving it via qpid messaging. Here is simple hello world to send to server : http://pastebin.com/M7mSECJn And here is server which ...
7
votes
5answers
2k views

Best solution for Java HTTP push (messaging)

We want to push data from a server to clients but can only use HTTP (port 80). What is the best solution for messaging? One idea is Comet. Are there other ideas or frameworks which offer lets say JMS ...
7
votes
6answers
605 views

Can someone explain what message brokers are used for?

In my line of work it's hard to go five minutes without someone extolling the virtues of MQ Series or MSMQ or the like, and I always wonder, after the sparkle of buzzwords has passed, what are some ...
6
votes
3answers
224 views

How to open attachment list of media?

In Android messaging, when click on attach it open the list of content provider like Camera, Gallery, Audio, Video etc. How to open the same list on button click? Like this :
6
votes
6answers
366 views

Is there an use case for non-blocking receive when I have threads?

I know non-blocking receive is not used as much in message passing, but still some intuition tells me, it is needed. Take for example GUI event driven applications, you need some way to wait for a ...
6
votes
6answers
3k views

What is the best Java based ESB Solution available?

I know there are similar questions on this topic, but none of them answers my particular questions correctly. We are in the phase of choosing a new ESB provider for our enterprise, our main purpose ...
6
votes
4answers
2k views

Lightweight Message Bus library

I will be starting a small Java (GWT really) project in the near future and I am at "information gathering" phase. Q: Is there a lightweight Message Bus library written in Java? My requirements are ...
6
votes
3answers
589 views

Avoiding split-brain, votes and quorum

Suppose you have n processes, n > 2. You want to have agreement amongst them that one is to be active. So they need to vote amonst each other to determine which one is active. All processes may fail ...
6
votes
8answers
1k views

Cross-platform, cross-language messaging system?

I'm developing a set of applications that work together to create a system for processing metering data. There's several reasons I want to have them loosely coupled and the system should be extensible ...
6
votes
4answers
2k views

Lightweight messaging (async invocations) in Java

I am looking for lightweight messaging framework in Java. My task is to process events in a SEDA’s manner: I know that some stages of the processing could be completed quickly, and others not, and ...
5
votes
3answers
903 views

Creating a threaded private messaging system like facebook and gmail

I am creating a threaded message system much like gmail and facebook where the inbox lists the most recent threads displaying the subject, the sender's name, and time-stamp of the most recent message. ...
5
votes
5answers
175 views

Where should we store confirmation/error messages in application?

I am working on PHP and Zend. I have to show different type of error/confirmation messages in application. Most of these messages are placed in code. So if I have to change one message then I have to ...
5
votes
1answer
363 views

How does JMS Receive work internally?

I've been researching various communication technologies/architectures/patterns/implementations (read: buzzwords) including Web Services (WCF, Axis2), ESBs, SOA, and wanted to know more about JMS with ...
5
votes
1answer
197 views

Passing messages between remote MailboxProcessors?

I'm using MailboxProcessor classes in order to keep separate agents that do their own thing. Normally agents can communicate with one another in the same process, but I want agents to talk to one ...
5
votes
1answer
879 views

NServiceBus Publish() vs. Send() in website context

I'm looking to gain a better understanding of why it is recommended to never Publish() messages from a website using NServiceBus (NServiceBus Documentation, scroll about two thirds of the way down). ...
5
votes
2answers
1k views

JMS - Going from one to multiple consumers

I have a JMS client which is producing messages and sending over a JMS queue to its unique consumer. What I want is more than one consumer getting those messages. The first thing that comes to my ...
5
votes
2answers
229 views

Is JMS (or any messaging solution) appropriate for a follower/following model

For the sake of simplicity, let's assume I'm cloning twitter (I'm not). So every user can follow other users, and be followed by other users. For each user you follow, you receive all tweets he sends. ...
5
votes
3answers
622 views

Any reason why I shouldn't use couchdb for message passing or realtime activity streams?

While using ampq or xmpp (rabbitmq or ejabbered that could have couchdb as backends) seems like a good fit to deliver real time updates about friend state in a social gaming platform where updates are ...
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
2k views

Lightweight JMS broker

I'm looking for a small and yet efficient enough lightweight JMS broker solution with no or minimum of dependencies. My messaging code should be running in the environment with a lot of dependencies I ...
5
votes
5answers
523 views

How can I send SMS messages like Twitter does?

Do all cell companies have open APIs that allow you to send SMS messages like Twitter does? Do you have to pay to do this?
4
votes
1answer
39 views

Is there an enterprise message queue which can drop duplicate messages (first value stays)?

I am looking looking for a message queue with these requirements. Couldn't find it; maybe the closest was the rabbitmq-lvc plugin (but I need the first value in the line to stick and stay in front). ...

1 2 3 4 5 13