| 1 |
# $Id: $
|
| 2 |
|
| 3 |
The msgqueue Module for Drupal
|
| 4 |
|
| 5 |
Message-oriented middleware is a common means to enable communication between
|
| 6 |
heterogeneous systems. For example, if a java system wants to know about events
|
| 7 |
happening in Drupal, this messaging module is one way to provide such information.
|
| 8 |
|
| 9 |
The "msgqueue" module integrates Drupal with messaging system like Apache ActiveMQ.
|
| 10 |
This module accesses Drupal events by implementing hooks for users, nodes, and comments,
|
| 11 |
and is licensed under GPLv2. The hooks supply events when any insert, update, or delete
|
| 12 |
action takes place for any user, node or comment. An XML message about any such Drupal
|
| 13 |
event is sent to the messaging system. The module formats XML messages using minixml,
|
| 14 |
and puts them into a queue via the Stomp protocol of ActiveMQ.
|
| 15 |
|
| 16 |
More info at http://codeguild.com/presentations/DrupalMsgQueue.html ; the author can
|
| 17 |
be contacted at that website.
|