Slashdot Mirror


Microsoft Embraces AMQP Open Middleware Standard

AlexGr writes to tell us that Microsoft apparently has plans to embrace a little known messaging standard called AMQP (Advanced Message Queuing Protocol). Red Hat, a founding member of the AMQP working group, was very excited about the news and wrote to welcome Microsoft to the party. "Suffice it is to say that AMQP is to high-value, reliable business messaging what SMTP is to e-mail. The proprietary message oriented middleware (MOM) products on the market today like IBM's MQ or Tibco's Rendezvous fulfill the same function as AMQP. But they operate exclusively in single-vendor fashion and utterly fail to interoperate with each other. They are also — perhaps not by coincidence — burdensomely expensive. As a result their use is mostly limited to wealthy organizations such as Wall Street banks (at least the ones who are still in business) that need to exchange huge volumes of business messages very reliably and very quickly. But AMQP's supporters feel the market for such reliable messaging could be much larger if a less expensive and truly open solution became available."

39 of 122 comments (clear)

  1. Embrace, something, something by Anonymous Coward · · Score: 5, Insightful

    Hmm.. Microsoft Embracing a new technology... I wonder what their two next steps are.

    1. Re:Embrace, something, something by Ethanol-fueled · · Score: 4, Funny

      Empathize and Excell?

    2. Re:Embrace, something, something by Richard_at_work · · Score: 2, Insightful

      I have mod points, but I feel obliged to reply instead of moderating. What should Microsoft do? If they go it alone, they are accused of anti-competitive measures through use of proprietary protocols et al. But if they decide to adopt a given standard, the first thing you hear on Slashdot is 'Embrace, extend, extinguish!!'. They can't win.

      So tell me, Mr Anonymous Coward and all who modded you up - what should Microsoft do? Just lie down and die because you dislike them?

  2. Which leads to the question by overshoot · · Score: 4, Insightful

    How will Microsoft's version be incompatible with the others?

    --
    Lacking <sarcasm> tags, /. substitutes moderation as "Troll."
    1. Re:Which leads to the question by Amazing+Quantum+Man · · Score: 5, Funny

      <IT-EXECUTIVE>
      Silly. Microsoft's is the standard implementation. All those other people are incompatible with Microsoft, not the other way around.
      </IT-EXECUTIVE>

      --
      Fascism starts when the efficiency of the government becomes more important than the rights of the people.
  3. Interesting, though not necessarily a big change.. by fuzzyfuzzyfungus · · Score: 4, Interesting

    While "MS Embraces $STANDARD" is certainly rather unusual news(rather, instances of "MS Embraces $STANDARD" that aren't immediately followed by "and Extends" are), I'm not sure that this is actually a big strategic change for MS.

    For a while now, MS has been the big, bad, expensive monopolist, with *nix and FOSS the freedom loving underdogs; but it should be remembered that MS was once the scrappy, cheap alternative to Big Blue and the proprietary Unix club. In most areas that has changed, since MS has largely taken over and started to tighten the screws; but I suspect that crazy expensive corporate middleware is a fairly conservative market.

    This looks more like an alliance of the cheapish, freeish underdogs against the old school proprietary iron guys rather than a change of heart at MS.

  4. Hey, give them time... by argent · · Score: 2, Interesting

    While "MS Embraces $STANDARD" is certainly rather unusual news (rather, instances of "MS Embraces $STANDARD" that aren't immediately followed by "and Extends" are), I'm not sure that this is actually a big strategic change for MS.

    Hey, give them time. They haven't hardly had any time at all to come up with incompatible extensions, they don't even have a product out yet. I'm sure they'll come up with their usual high quality subtle inconsistencies and undocumented XML blobs in no time.

    1. Re:Hey, give them time... by TaoPhoenix · · Score: 2, Insightful

      Yep!

      They'll come out with the undocumented inconsistencies first, call them features, and the product second!

      --
      My first Journal Entry ever, in 8 years! http://slashdot.org/journal/365947/aphelion-scifi-fantasy-horror-poetry-webzine
  5. XMPP by tmarthal · · Score: 4, Interesting

    This is the first that I've heard of this technology. Can anyone post how this is different than XMPP (http://xmpp.org)? XMPP is the updated name of the Jabber protocol.

    I know that every project that I get on, I try to dissuade the use of JMS (Java Message Service) and use XMPP instead. Is this more of a competitor to the JMS spec, since it "reliable"? (whatever that means)

    1. Re:XMPP by Anonymous Coward · · Score: 5, Insightful

      I try to dissuade the use of JMS (Java Message Service) and use XMPP instead.

      Why? JMS is just an API. This is sort of like protesting against POSIX or something. JMS implementations can be open source, commercial, free, expensive, whatever. I'm not sure I see your point, especially since messaging is not a core part of your app, and any sizable business will have an investment in a messaging platform already, in the form of tools, monitoring, expertise, etc.

      Is this more of a competitor to the JMS spec, since it "reliable"? (whatever that means)
      If you don't know what reliable messaging is, maybe you shouldn't be offering your advice?

    2. Re:XMPP by DragonWriter · · Score: 4, Informative

      This is the first that I've heard of this technology. Can anyone post how this is different than XMPP (http://xmpp.org)?

      AMQP seems more "enterprisey" than XMPP, focussed on traditional enterprise applications of messaging, XMPP came up from the IM world. This gives them different areas of focus, though they have considerable overlap in functionality. (There are also a number of other protocols in the messaging space: STOMP & Apache ActiveMQ's OpenWire, and most of the big commercial messaging systems use their own proprietary protocols.)

      I know that every project that I get on, I try to dissuade the use of JMS (Java Message Service) and use XMPP instead.

      JMS is an API, XMPP is a protocol. There are JMS implementations that can use XMPP as a transport protocol (Apache ActiveMQ, for instance, can use its native OpenWire protocol, STOMP, or XMPP).

      Is this more of a competitor to the JMS spec, since it "reliable"? (whatever that means)

      "Reliable" messaging usually means that once the messaging system has acknowledged receipt of the message, it has assumed responsibility for guaranteeing delivery to a suitable endpoint (possibly with some caveats). Mostly, it means in practice that the protocol or implementation provides (or, in the case of a protocol, either mandates or supports in a way which permits clients to discover whether the server is using) channels whose contents are persisted to permanent storage before they are acknowledged.

    3. Re:XMPP by NeRMe · · Score: 5, Informative

      While XMPP and AMQP do have some similarities, they were developed to solve quite different problems.

      XMPP is better for human-to-human or human-to-machine interaction. It is better for federated networks (user@jabber.someserver.com can communicate with user@jabber.someotherserver.com). It has authentication built in. It's more "Internet ready", with modules for BOSH and IRC.

      AMQP is geared more towards traditional machine-to-machine message queuing. It offers more control over the type of message delivery ("exactly once", "pubsub", "at least once"). It's aiming to just be a message queue.

      RabbitMQ is an open-source implementation of AMQP built in Erlang. They seem to be quite fond of XMPP, realizing the different natures of the protocols, and even created a module for ejabberd (also written in Erlang).

      Another interesting mashup between RabbitMQ and ejabberd is is a project I stumbled across called Rabbiter, which looks like some sort of implementation of a Twitter-link setup. They're looking to bring CouchDB (also Erlang) in the mix for persistence.

      I'm expecting to see quite a bit of interaction between RabbitMQ, ejabberd, and CouchDB over the next few months.

      Ruby AMQP Client

      Python AMQP Client

    4. Re:XMPP by DragonWriter · · Score: 2, Interesting

      No, its not a freaking Instant message protocol. Its for inter computer communication for the doling out of tasks usually with in a cluster.

      XMPP, despite having originated as an IM protocol, has been used as a transport protocol for more general messaging.

    5. Re:XMPP by ppetrov · · Score: 4, Informative

      This is the first that I've heard of this technology. Can anyone post how this is different than XMPP (http://xmpp.org)?

      Here's a post about XMPP vs AMQP by Peter Saint-Andre:

      https://stpeter.im/?p=2099

      IMNSHO, XMPP (+XEPs) makes AMQP redundant. Although some people might argue that, being a binary protocol, AMQP is faster.

    6. Re:XMPP by DragonWriter · · Score: 2, Informative

      That was actually my first thought. What does this do that STOMP doesn't?

      Quite a bit, actually. While its not quite at 1-0 (what every other project in the universe would call "1.0") yet (the most recent release is 0-10), you can look at the high-level requirements list for 1-0, to get an overview.

      Lots of applications probably don't need what it provides over STOMP, either because they don't need it at all, or because they get it somewhere other than the basic messaging protocol, but it certainly covers a lot more than STOMP does.

    7. Re:XMPP by cdwiegand · · Score: 2, Insightful

      MQ systems connect multiple programs without having to be constantly connected, and guaranteeing once-and-only-once delivery. Banks use MQ to do data transfers, as they know each item will be delivered once. Also, MQ systems usually allow load balancing (say you have a high speed gateway which pipes messages into an MQ and then several hundred slow-processing clients running the incoming queries, then returning the results back out another queue which the gateway picks up and sends back out via whatever protocols it speaks). It's really great for making scalable systems as you can just increase the # of gateways, clients, or whatever as your processing needs increase. I run an ActiveMQ system at work and it can process 40,000 msgs per second at approx 1K of data per message. XMPP would work great (we thought about it) but doesn't do automatic client load balancing like MQ does, and it can't guarantee that if no client picks up the message that it will get delivered when the client finally does pick up their messages/reboots/etc. Think XMPP with a hard drive queue.

      --
      . Define sqrt(x) as something really evil like (x / rand()), and bury it deep. Watch your coworkers go nuts.
    8. Re:XMPP by phoebe · · Score: 5, Informative

      Performance wise, XMPP bills itself as high performance messaging, but the developers are focused on the WAN. AMQP comparatively is ultra-high performance messaging with optimisations for the LAN.

      This is confusing as for many projects there is limited need for ultra-high performance data rates. Numbers of the range 100,000 messages per second with latency under one millisecond. At this rate special engineering methods are required, XML, SSL, compression are too slow, focus is upon zero-copy processing, i.e. accessing and updating data in place, because the memory-bus is too slow to perform copies.

      There is a discussion between one AMQP and one XMPP developer that sums this up:

      >> So AFAIU, XMPP is not a serious candidate for high-volume messaging, right?

      No, wrong, as with anything it will all depend on the capacity of your servers and the bandwidth you have available at your disposal, there is nothing stopping high-volume messaging over XMPP if you control the infrastructure.

      http://www.mail-archive.com/jdev@jabber.org/msg19403.html

      Another major advantage for AMQP is message routing. You can define which messages are routed to different sites by their content. Again this is an unusual requirement for many projects as they do not exist on such a scale for this to normally be an issue. The closest equivalent is SMTP routing by domain, you can find more discussion on this InfoQ article:

      http://www.infoq.com/news/2008/08/amqp-progress

      The main focus on AMQP is to appear a qualified messaging protocol for certified or guaranteed messaging with the necessary tools and support from vendors to promote its usage. XMPP can do a lot of the AMQP functionality already, but most of it is optional functionality rather than a primary design goal. If AMQP support appears in the Visual Studio Development System together with MMC modules for monitoring and administration, for example, its adoption could rapidly grow.

    9. Re:XMPP by Richard+W.M.+Jones · · Score: 2, Informative

      Well, you compare two quite different things (throughput & latency), but I'll bite: You should be able to do 10-100,000 messages per second with Red Hat MRG. If you can't, then there's something wrong with your set up.

      Remember that AMQP was initially designed and written by JP Morgan to replace their existing proprietary infrastructure (IBM MQSeries-based IIRC). JP Morgan understand the performance concerns.

      Rich.

  6. What happened to their old product? by rubies · · Score: 4, Informative

    I can't even remember it's name, although it's installed here somewhere.

    The IBM MQ product is actually OK to use (very simple, lots of platforms supported) and especially double plus good if you have an IBM mainframe somewhere on your network.

    TIBCO? Shudder. About three quarters of the money they charge goes towards getting your manager drunk enough to sign the purchase order. The product itself isn't worth a damn.

    1. Re:What happened to their old product? by Amazing+Quantum+Man · · Score: 2, Informative

      You mean MSMQ?

      --
      Fascism starts when the efficiency of the government becomes more important than the rights of the people.
  7. Why is Red Hat excited? by FranTaylor · · Score: 3, Interesting

    Perhaps they feel that Microsoft brings recognition to a technology that RedHat is poised to exploit in their products. RedHat is only too happy to compete with Microsoft on an even playing field.

  8. Re:Embrace, Extend, Extinguish by Kjella · · Score: 2, Interesting

    One might hope that other vendors would use it too, Microsoft may be big but not so big they can break any standard at will. At least in business middleware Microsoft doesn't have a monopoly on vertical will-only-work-with-our-own-products solutions.

    --
    Live today, because you never know what tomorrow brings
  9. Re:What is this anyway? by Knightman · · Score: 3, Informative

    Because most competent middlewares supports transaction handling, synchronous and asynchronous, triggering, queueing and prioritizing of messages.

    SOAP and XMLRPC doesn't really cut it when you need proper transaction based messaging. I've seen some bastard solutions for this but they perform poorly.

    --
    --- Reality doesn't care about your opinions, it happens anyway and if you are in the way you'll get squished.
  10. Re:What is this anyway? by DragonWriter · · Score: 2, Informative

    OK, I've heard people mentioning messaging and middleware, but what is this exactly? Why would I want to use this instead of XMLRPC or SOAP or something else?

    Architectures using messaging are more loosely coupled than those using SOAP or XMLRPC. Essentially, every component is a messaging client, asynchronously consuming and/or producing messages that get posted to specified channels. None of the clients need to know anything about any of the other clients, only what types of messages are acceptable to be put on what channels, and what channels to listen on for types of messages they are interested in.

    This makes it easier to add intermediate processing components, to scale out the number of "servers" (though they are actually a kind of clients) handling particular types of messages, etc., since multiple clients can listen on the same channels (though only one will receive each message, for a normal, queue-like channel).

  11. Re:What is this anyway? by nycguy · · Score: 4, Informative
    These products provide functionality beyond simple messaging that abstract message sources and their destinations, such as:
    • subject-based messaging: Rather than publishing to specific destinations, one publishes to a particular subject. The middleware routes the message to all recipients subscribed to that subject. (Note that one can get point-to-point messaging just by having each recipient subscribe to a unique, identifying subject.)
    • transport abstraction: One theoretically need not worry about the transport used, which may be a TCP/IP connection, UDP multicast, Unix domain socket (locally), etc. (In practice, however, high-volume messaging will expose the limitations and pitfalls of the transport.)
    • guaranteed delivery: By abstracting the message sender from the receiver, the middleware can provide more reliable messaging. For example, it can replay a message to a receiver even if the sender has disappeared. Thus, message publishers and receivers need not be running simultaneously. (In practice, this also has pitfalls. You can accidentally replay messages from a previous session if you accidentally reuse old persistence files in your configuration.)
    • data conversion: Some middleware solutions provide conversion of binary data between architectures without forcing one to write everything out in text form.

    Middleware solutions also come with tools for monitoring, configuring, etc., that simpler solutions often do not. This being said, I've had my fair share of problems with middleware in the past. Like any complex piece of software, you get a lot of functionality, but you also get a lot of baggage and hidden pitfalls that can come back to bite you when your usage of that functionality becomes demanding.

  12. SMTP analogue? by pjt33 · · Score: 4, Insightful

    Suffice it is to say that AMQP is to high-value, reliable business messaging what SMTP is to e-mail.

    So it sort-of works but it's 30 years out of date and every man and his dog has a different opinion as to how to fix its gaping flaws?

  13. Re:What is this anyway? by mveloso · · Score: 2, Informative

    Well, middleware tends to have a bus publish/subscribe architecture. So you throw a whole lot of data onto the bus, and you don't really care where it goes. Clients are clients of the bus, and generally register for data that they're interested in.

    The standard example for this kind of stuff is stock trading. Your stock app basically dumps all the transaction information onto the bus in realtime, and clients register for notification of trades on specific ticker symbols or some kind of criteria (>1000 shares, price), or any combination of things.

    As long as the message contents are standardized, anyone can listen (or post)...assuming they have the correct permissions, etc.

    This doesn't sound hard, until you realize that comes to around 10379 trades/sec given today's DJIA trading volume.

    The bus architecture seems to have scaled up pretty well. I remember when trading volumes were a lot less. Note that the bus (solution) generally:

    * requires transactions
    * requires guaranteed delivery
    * requires a guaranteed latency time
    * requires absolute uptime during its operational period
    * requires that data never be lost, ever

    Lots of features fall out from those, such as distributed architecture, redundancy, failover, hot standby, replication, fault tolerance, etc.

    Luckily, the realtime platform only needs to run during market hours (and some period before/after). So technically you only need about 6.5 hours of uptime per day (make it 10 hours for settlements, etc).

    Why would you use a bus? Because it means you don't have to care how clients connect to you. Throw your message onto the bus, and that's all you need to worry about. You don't have to worry about transaction support, security, all that other crud. Your app's job is to connect to the bus and feed it data.

    Likewise, the client just needs to hop onto the bus and register for the messages that it cares about (and presumably understands). You'd think you'd lose performance because it's so decoupled, but you don't.

  14. Re:What is this anyway? by mrboyd · · Score: 4, Informative

    Ok, I'll try.

    Let's imagine that your organization uses a few different applications. For example a core banking, a loan management, credit card management, call center, billing etc..

    Now let's say that you would like to be able to do "fun" stuff when something "cool" happens in one of those applications. For example, when someone default on a loan payment you'd like the core banking to flag the account as "dangerous", block his credit card, cancel his vip status in the CRM, the call center will generate an automated call to connect you to a customer service rep from the debt collection department that will menace you with the word foreclosure.

    The first way to do that is to create many one-to-one relationship between all those application. "onpaymentdefaultduedate" in the loan management you could call successively each API of each application to "make it" do whatever it is that needs to be done. So the loan management will need to know about the crm, the call center, the billing etc...

    Problem is that the next time you add a fancy new application (SMS harassment gateway for example) or upgrade an existing one (API change yeah!) you'll need to upgrade all the applications that have a one-one relationship. Which mean bringing on board the vendors of each and every applications for top dollars. Plus after a few years, everyone will have forgotten how the things even works. The vendor does not provide version 2 customization and you'll have to upgrade everything to version 7.3.56 and retrain your staff because the interface has changed and you can't expect the tellers to figure it out by themselves.

    The second option is to add a middleware that will "sit" in the middle of all your other application (hence "middleware") and connect all the applications together using a publisher/subscriber model.

    In that architecture, the loan application does not know about any other application than the MQ. Whenever you start defaulting it will simply send a message ("loandefaulted userid=12 amount=345.5") to the message queue and the MQ will in turn dispatch it to whatever other applications has register an interest for it by saying something like "subscribe to event loandefaulted from loanapplication". Many applications can register to the same event. That way the CRM can flag you, the call center can call you, legal can sue you and the SMS reminder volley can begin. All of that without any applications having to care about the brand or specific implementation (J2EE or .NET?) of the other application.

    Of course this is a bit simplistic but cover 80% of the purpose of an MQ: loose coupling of application via an event based mechanism. Add to that option such as guaranteed reliability, prioritization of message, security and more complexe workflow of messages with multiple "queries" and "answers" and maybe you'll get a rough idea of why a MQ is a better design that "hard coupling" of n-application (sometime).

    Of course since once you've chosen a MQ and adapted all your applications to use it you're basically tied forever and ever to your MQ vendor who hold you by the balls and can continuously rape you over and over with astronomical maintenance fee since you now have a single coordinated point of failure that can and will eventually take everything down at some point.
    But hey, you're a big bank you can take it.. or at least you could until a month ago but whatever...

    Clearer?

  15. Not so little known by Monkius · · Score: 3, Informative

    Odd this came up just at this moment, though it's hardly little known.

    Implementations:

    Several here: http://jira.amqp.org/confluence/display/AMQP/AMQP+Products

    --
    Matt
  16. Re:Sooo.... by uberjack · · Score: 2, Informative

    And you get C# which is actually a much nicer language than J++ ever was, integrate way better with Microsoft platform

    Microsoft took Java, did a shitty job at writing a VM for it, ignored repeated urgings to conform, then threw a tantrum and reinvented the wheel.

    ... gave a much needed kick in sun's behind who realized it was finally time to update Java with some interesting features. Both are now alive and kicking.

    Competition's always better, and my point wasn't to compare Java and C#. It was to demonstrate Microsoft's approach to such issues, which is to dissect, then "reinvent".

    What was your point?

    Pay better attention next time

  17. Comment removed by account_deleted · · Score: 2, Insightful

    Comment removed based on user account deletion

  18. AMQP for Beginners by mpapet · · Score: 3, Interesting

    Here's a real-world application for AMQP.

    Let's say there are two banks, BA and WTF. Every day they have debits and credits flying back and forth.

    A protocol like AMQP makes exchanging messages (aka transaction) robust. Bank's IT guy gets mad and pulls the T1 out the wall at BA? Messages do a few things like wait in a queue at BA.

    The messages that were sent to WTF before the cable was pulled were processed by WTF and wait in a queue at WTF unti BA comes back online.

    That's a simple example. There is lots of information outside of the banking world where robust messaging is required.

    --
    http://www.maxineudall.com/2010/02/should-economists-be-sued-for-malpractice.html
  19. Speaking of standards by thethibs · · Score: 3, Insightful

    Speaking of standards...

    We should establish, as a standard, an enumerated list of the half-dozen or so stock Microsoft whinges that end up as eighty percent or so of the comments to any article that mentions Microsoft.

    Instead of typing it fresh each time, or pasting it from a previous message, the poster could just invoke e.g. "#3", instead of "Microsoft will Embrace, Extend, Extinguish" and all its semantic equivalents.

    Better yet, since the list will be pretty short, the Slashdot UI could be modified to include a drop-down list of the standard whinges with any article that includes the Microsoft name. Select a whinge, and Slashdot automatically posts a comment for you (correctly spelled). What could be simpler?

    The aggregate time savings would be a major boon to the American economy.

    --
    I'm a Programmer. That's one level above Software Engineer and one level below Engineer.
  20. The words ring hollow by dave562 · · Score: 2, Informative

    "They are also -- perhaps not by coincidence -- burdensomely expensive."

    I've been using Exchange since 5.5 and have dealt with every revision up to the current one. When the organization that I worked for developed a need for in house IM the first place I went to look was Exchange. They had built in IM in Exchange Server 2000. We're running 2003 and surprise, surprise... IM is gone. Now Microsoft expects us to purchase some Office Communications Server or some BS like that to have the functionality that was previously free.

    Given that experience with Microsoft and IM, I don't think that they're really in the business of giving free functionality to people using their software.

    As long as I'm posting this, can anyone recommend some good, hopefully free IM clients for internal use? We only need to support about 50 users.

  21. Defacto standard! by supersnail · · Score: 2, Interesting

    The defacto standard in this area is Webshere MQ from IBM.

    It has something like 90% of the business relaible messaging market.
    All the other commercial products (MSMQ, Oracle, Tibco etc.) are niche players.

    MA is actually pretty cheap for a "Websphere" branded product starting from free for a
    try this at home folks windows installation, through a few $,000 dollars for a sizeable unix
    shop license to tens of thousands for a mainframe setup (This IS considered cheap for mainframe software!)

    If you can persuade your boss not to pay for software (always desparately hard in a business environment!) then ActiveMQ is the defacto standard for open source implementations. AFIK its just as good as IBMs product as long as you stay in the Java world.

    This all looks like an attempt to cause confusion and muddy the waters with yet another unstandard standard.

    --
    Old COBOL programmers never die. They just code in C.
  22. Re:Interesting, though not necessarily a big chang by aproposofwhat · · Score: 2, Interesting

    MS was once the scrappy, cheap alternative to Big Blue and the proprietary Unix club

    When was that, exactly?

    For file and print services, Netware had NT beaten hands down - for RDBMS, Oracle ran way faster on Netware than on NT, and even the mainframe integration on Netware was light years ahead of the Microsoft offerings.

    Novell were just shitty marketers, so Windows (a perfectly adequate desktop OS) ended up competing against real server OSs by default.

    OK, the server flavours of Windows are better now than they used to be, but I'd rather run Linux, a proprietary *nix or (heaven forbid) IBM on a critical system than any number of Windows servers.

    I'd expect to see a couple of the big boys supporting AMQP soon - if only to stop Microsoft diluting and perverting the standard.

    --
    One swallow does not a fellatrix make
  23. Why AMQP is important and how to use it by rabbitmq · · Score: 3, Informative

    Goodness me...

    I work on RabbitMQ which is a messaging implementation that provides AMQP and other patterns. I hope my comment here can clear up some misunderstandings in the community.

    Here is an introduction to AMQP from the RabbitMQ team - there are two presentations and a video - made at Google a few weeks ago: http://google-ukdev.blogspot.com/2008/09/rabbitmq-tech-talk-at-google-london.html

    People who are wondering why AMQP is important compared to MQ, JMS, or whatever, should check out the first presentation. The second presentation includes information about XMPP vs AMQP. The two protocols are strongly complementary and are not alternatives. You can use these today: RabbitMQ as someone mentioned above has clients in lots of languages like Java, Ruby, Python, .., and including .NET WCF and C#.

    Integration with Visual Studio has been done: http://www.rabbitmq.com/dotnet.html

    As someone else pointed out there are protocol adaptors including STOMP and XMPP: http://www.lshift.net/blog/2008/07/01/rabbitmq-xmpp-gateway-released

    It is open source - we welcome questions on the mailing list which you can find linked to from the home page: http://www.rabbitmq.com/

    Cheers,

    alexis

  24. Re:Embrace, Extend, Extinguish by E5Rebel · · Score: 2, Interesting

    It is the "Extend" part that we need to be worried about because it is the gateway to making propitiatory additions to standards. There is a useful blog entry by Glyn Moody on Microsoft's tactics over Apache, where they have been 'cleared' to contribute patches. This will effectively fork the code, according to Glyn. Will the same happen here? http://www.computerworlduk.com/community/blogs/index.cfm?entryid=1407

  25. Re:A very fast messages broker by DragonWriter · · Score: 2, Interesting

    ZeroMQ is not really a messages broker, messages are directly sent to the recipient without passing through any broker and this is what makes ZeroMQ different and fast. But the end result is that you get the same features as a messages broker, just faster and easier.

    Except, no, you don't get the features of a message broker. Particularly, you don't get reliable messaging. Its not really all that surprising that when you take the "middle" out of "middleware", you get a speed increase, at the same time losing a lot of what makes middleware useful.