Java Message Service and Haskell

I was wondering if there is any way to receive JMS messages from some provider like ActiveMQ or WebMQ in a Haskell program. I've seen that there is a Haskell client for ActiveMQ but it seems to be unmaintained.

Has anybody experience with this or any kind of advise?


Looks like the main libraries we currently have are:

  • amqp
  • zero-mq
  • If those aren't suitable, you might use them as a starting point to develop your own library.


    如果你正在寻找的只是java / haskell IPC,你可能想看看节俭(见http://incubator.apache.org/thrift/),到目前为止我已经取得了很大的成功。


    You can access ActiveMQ using the Stomp protocol with this library https://hackage.haskell.org/package/stomp-queue

    You can enable Stomp on ActiveMQ like this:

    <transportConnectors>
    <transportConnector name="stomp" uri="stomp://localhost:61613"/> 
    </transportConnectors>
    
    链接地址: http://www.djcxy.com/p/46606.html

    上一篇: 自然排序为SQL Server?

    下一篇: Java消息服务和Haskell