Cross-platform, cross-language messaging system?

前端 未结 8 1935
萌比男神i
萌比男神i 2021-02-04 10:47

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 sy

相关标签:
8条回答
  • 2021-02-04 11:18

    You could use an ESB (Enterprise Service Bus) like Mule. The idea is that you send your messages to the Bus in any way you want (JMS, http, email) and the bus does the routing for you. I don't know if there are .NET bindings, but even if there aren't any available, you can build your own using an extension mechanism. Of course, this means you need to set up a bus somewhere.

    0 讨论(0)
  • 2021-02-04 11:21

    Open Message Queue (Open MQ) is included in the GlassFish application Server and also runs stand-alone. It starts up in a few seconds, and supports Java and C client. Stomp support is currently in development in version 4.4.

    0 讨论(0)
  • 2021-02-04 11:25

    If you want a multilanguage "standard" -- meaning you are not tied to using a specific broker / intermediary like ActiveMQ, SonicMQ, or WebsphereMQ -- I strongly suggest you look at the AMQP standard (http://www.amqp.org) and related brokers (RabbitMQ, QPid, OpenAMQ; see http://www.amqp.org/confluence/display/AMQP/AMQP+Products).

    0 讨论(0)
  • 2021-02-04 11:30

    activemq

    http://activemq.apache.org/cross-language-clients.html

    Supports all the following protocols

    • OpenWire
    • REST
    • Stomp
    • WS Notification
    • XMPP
    • AMQP

    Thanks Paul

    0 讨论(0)
  • 2021-02-04 11:32

    Have you considered MPI?

    0 讨论(0)
  • 2021-02-04 11:33

    As Paul mentioned, try ActiveMQ which supports many language clients and wire protocols.

    BTW ActiveMQ 6.x will probably be using Google's protocol buffers as one of its underlying wire transports :)

    I've used Apache ActiveMQ on many projects to great success. Its the most popular and powerful open source message broker around today.

    Incidentally on .Net / C# the ActiveMQ project has created the NMS API which is a standard API for communicating with message brokers on the .Net platform which is now integrated into Spring.Net

    0 讨论(0)
提交回复
热议问题