Versions Compared

Key

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

...

Anchor
amq advanced
amq advanced

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. 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 */

				"password                "UserName": "your encrypted password","#{stream:USERID}",      /* optional: sets the JMS password used for connections */
				"userName": "user name",Optional: just copy it as is - it will be JMS Connection User value from Stream parameters*/
                "Password": "#{stream:USERPASSWORD}" /* optional: sets the JMS userName used by connections Optional: just copy it as is - it will be JMS Connection Password value from Stream parameters*/
				"clientID": "Client ID",               /* optional: sets the JMS clientID to use for the created connection */
            }
        }
    ]
}


...