Java and Haskell Message Service

I was wondering if there is a way to receive JMS messages from some provider, such as ActiveMQ or WebMQ, in Haskell. I saw that there is a Haskell client for ActiveMQ, but it does not seem to be supported.

Does anyone come across this or any advice?

+7
java haskell jms
source share
3 answers

It looks like the main libraries that we currently have:

If they do not fit, you can use them as a starting point for developing your own library.

+3
source share

If you are only looking for java / haskell IPC, you can look at the cost-effectiveness (see http://incubator.apache.org/thrift/ ) with which I have so far been successful.

+1
source share

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

You can enable Stomp in ActiveMQ as follows:

<transportConnectors> <transportConnector name="stomp" uri="stomp://localhost:61613"/> </transportConnectors> 
0
source share

All Articles