Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


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)

This is minimal required configuration parameters.

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



Code Block
languagejs
themeRDark
titleconnections.json
linenumberstrue
{
    "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 */
            "ComponentName": "eagle-amq", /* name of component */
            "Parameters": {
                "brokerURL": "tcp://*****.eagleinvsys.com:61616", /* connection url */

				"password": "your encrypted password", /* optional: sets the JMS password used for connections */
				"userName": "user name", /* optional: sets the JMS userName used by connections */
				"clientID": "Client ID", /* optional: sets the JMS clientID to use for the created connection */
            },
            "UseConnectionPool": true, /* optional */
            "SessionCacheSize":  50 /* optional: size of connection pool */
        }
    ]
}


Advanced configuration:

To add additional parameters/properties (it is not URI parameters of JMS component):

...