7
votes
Multicasting, Messaging, ActiveMQ vs. MSMQ?
I'm kinda biased as I work on ActiveMQ but pretty much all of benefits listed for MSMQ above also apply to ActiveMQ really.
Some mor …
0
votes
What to use for Messaging with C#
Its worth mentioning that the ActiveMQ open source project defines a C# API for mes …
1
vote
Tool for posting test messages onto a JMS queue?
I recommend the approach of @Will and using the Web Console of ActiveMQ which lets you post messages and browse queues or de …
4
votes
Is Async Messaging (In particular pub/sub style messaging) viable as a domain service architecture or only in an SOA-focused environment?
Great question :). The main problem with asynchronous messaging is that when folks use procedural or object oriented languages, working in an asynchronous or event based manner is often quite trick …
0
votes
Is Async Messaging (In particular pub/sub style messaging) viable as a domain service architecture or only in an SOA-focused environment?
I agree with @BradS too BTW
BTW here's a way of hiding the middleware from your business logic while sti …
3
votes
Lightweight messaging (async invocations) in Java
Do you need any kind of persistence (e.g. if your JVM dies in between processing thousands of messages) and do you need messages to traverse to any other JVMs?
If its all in a single JVM an …
3
votes
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 …
11
votes
what is JMS good for?
JMS and messaging is really about 2 totally different things.
publish and subscribe (sending a message to as many consumers as are interested - a bit like sending an email to a mailin …
2
votes
Protocol conversion / normalization: Biztalk, alternatives?
If you don't mind working on the Java platform there's a lightweight protocol switcher and implementation of the …
2
votes
Cross-platform, cross-language messaging system?
As Paul mentioned, try ActiveMQ which supports many language clients and wire protocols.
BTW ActiveMQ 6.x …
0
votes
Strengths and weaknesses of XmlBlaster
What are your requirements? Discussing middleware without concrete requirements is a bit like comparing apples to oranges.
…
2
votes
8
votes
Message Oriented Middleware (MoM) Vs. Enterprise Service Bus (ESB)
Messaging tends to concentrate on the reliable exchange of messages around a network; using queues as a reliable load balancer and topics to implement publish and subscribe.
An ESB typicall …
1
vote
Serializing objects for asynchronous messaging
XML or JSON are probably the easiest. Protocol buffers is cool but I'd treat it as an optimisation to think of later on if you really need to (as its a bit harder to use being essentially a binary …
