9
votes
Good Open Source Queuing Platform?
As @davidnicol mentions you can use a database; though the downside with a database is doing great load balancing across many threads/processes is kinda hard; you often get one thread locking the h …
1
vote
Good Open Source Queuing Platform?
BTW a different aspect to your question is what API to use to talk to whatever technology you choose.
My recommendation with any middleware or infrastructure is to try to …
1
vote
JMS message receiver filtering by JMSCorrelationID
BTW while its not the actual question you asked - if you are trying to implement request response over JMS I'd recommend …
1
vote
How do I set up a mock queue using mockrunner to test an xml filter?
I'd recommend having a look at using Apache Camel to create your test case. Then its really easy to switch your test case from any of …
0
votes
Counting items of each priority level in an IBM MQ Series Queue
You could use a JMS QueueBrowser to browse the messages in the queue and build up totals for each priority levels.
QueueBrowser browser = session.createBrowser(someQueue);
for (Enum …
1
vote
Replacing a message in a jms queue
This sounds like an ideal use case for the Idempotent Consumer which removes duplicates from a queue or topic. …
8
votes
Queues against Tables in messaging systems
The phrase beats every time totally depends on what your requirements were to begin with. Certainly its not going to beat every time for everyone.
If you are building a single syst …
1
vote
JMS queue logging/browsing for all messages (invisible consumer for queue) (OpenJMS)
If you switch to Apache ActiveMQ (which is a much better & more popular open source JMS provider which also fully supports JMS 1.1 and J …
0
votes
ASP.NET - best queue system for a new application
You could look at using an open source message broker such as Apache ActiveMQ
…
0
votes
Connecting http request/response model with asynchronous queue
Here's how to implement request-response efficiently on JMS which might be helpful (tho …
