Aranea is a node based enterprise service bus technology stack. Aranea enabled applications can be distributed into computational units and communicate via Message Passing.
Aranea is a Java and Eiffel library on top of Apache ActiveMQ, the underlying MP system.
Check out the Doc and Development pages for more details about Aranea, and to start with Aranea enabling your applications!
Example
With Aranea you can send messages between Aranea nodes. A message to send a status message to another node looks like this:
[project AraneaDemo prefix=A_] {
[namespace Core] {
[message Status] {
properties={
message: string notVoid
}
}
}
}
Aranea then generates Java and Eiffel code out of this messages. The Java class for the Status message looks like this:
packagearanea.demo.core;
/**
* Message implementation for message of type Status defined in the
The example assumes, that Active MQ is installed and running, that a receiver node is running and that the nodes are configured to use the installed Active MQ. See the Sudoku example in the SVN repository for an example.