Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 23 Next »


Apache ActiveMQ ™ is the most popular and powerful open source messaging and Integration Patterns server.


To configure ActiveMQ connection you have to fill following parameters:

  • Region         - concrete Oracle SID of your region name
  • Broker URL - address of your ActiveMQ (IP or Host name)

These are minimal required configuration parameters.

All optional parameters can be omitted (do not include them in config for just in case).


connections.json
{
    "Region": "Oracle SID of the region", /*Oracle SID of region name to which this config belongs */
    "Connections": [
        {
            "ConnectionName": "my.activemq.connection", /* name of ActiveMQ connection. Do NOT use underscore character ("_") in name */
            "ComponentName": "eagle-amq", /* reference to component name defined in components.json! Check it out. */
            "Parameters": {
                "brokerURL": "tcp://*****.eagleinvsys.com:61616", /* connection url */

				"clientID": "Client ID",               /* optional: sets the JMS clientID to use for the created connection */
            }
        }
    ]
}



  • No labels