Search Results

1
vote

ActiveMQ over SSL to a .Net client

If it is possible then Spring.Messaging.Nms is the way, yes. I'm just not sure if the ActiveMQ C# code supports SSL yet or not (the broker certainly does). You might want to ask on the …
3
votes

Queue alternatives to MSMQ on Windows?

Why not use ActiveMQ? :) …
6
votes

What qualities should a developer/architect look for when evaluating message queues?

If its an open source message queue then I'd always pick the one with the biggest community behind it so you know your investment won't be wasted. Also pseudo open source projects where its really …
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

How do you preserve message order when consuming messages from ActiveMQ?

Everything Jason just said. A few other things to be careful of. You are keeping the consumer open for lots of messages right? You're not creating a consumer for a few messages then closing it? Onl …