Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Message Service and Haskell

Tags:

java

haskell

jms

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?

like image 968
jagg Avatar asked Jul 01 '10 16:07

jagg


2 Answers

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.

like image 78
Don Stewart Avatar answered Nov 18 '22 17:11

Don Stewart


If what you're looking for is just java/haskell IPC you may want to look at thrift (see http://incubator.apache.org/thrift/), which I've had good success with so far.

like image 43
sclv Avatar answered Nov 18 '22 19:11

sclv