tags:

views:

113

answers:

2

Hi,

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?

+1  A: 

Looks like the main libraries we currently have are:

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

Don Stewart
Thanks, I think that should help me. I was looking for a way to communicate a Java process with a Haskell one, so I guess I can translate a message from WebMQ to rabbitMQ and send it to Haskell.Sadly, writing my own library is far beyond my current haskell level ...
jagg
+1  A: 

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.

sclv