[erlang-questions] Interfacing Erlang With IBM's Websphere MQ
Patrick Logan
patrickdlogan@REDACTED
Mon Oct 22 20:23:52 CEST 2007
> Anyone know if a module exists to interface an Erlang program with IBM's
> Websphere MQ messaging queue?
Websphere MQ has a simple HTTP interface which may be a reasonable
place to begin...
* GET the current item on a queue
* DELETE and return the current item on a queue
* POST an item to a queue
Not truly "REST" but it is simple and lightweight.
Heavier mechanisms for Erlang would be one of the several Java
interfaces (JMS or MQ-specific), then go through Erlang's Java
library.
Or the MQ C/C++ interfaces.
-Patrick
More information about the erlang-questions
mailing list