Versions Compared

Key

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

...

  1. Configure the non-pooled connection to WebSphere or ActiveMQ in a .json file in estar/tpe/dynamic/mc2/eaglejms/connections. The following non-pooled ComponentNames for ActiveMQ and WebSphere MQ are defined in the Eagle MC2 out of the box: wmq-no-pool, wmqssl-no-pool, wmq-tds, eagle-amq-tds, eagle-amqssl-no-pool and eagle-amq-no-pool. For example for ActiveMQ, create a amq.json file with the following content:


    Code Block
    languagejs
    themeDJango
    titleActiveMQ Non-pooled Connection Configuration
    linenumberstrue
    {
        "Region": "BND13XLN", /*Oracle SID of region name to which this config belongs */
        "Connections": [
               {
                "ConnectionName": "activemq.nopool", /* name of ActiveMQ connection to be used in the stream*/
                "ComponentName": "eagle-amq-no-pool", /* name of component */
                "Parameters": {
                    "brokerURL": "tcp://eglwwvm22.eagleinvsys.com:61616" /* connection url */
                }
         ]
    }
    
    


    You can note that we use the eagle-amq-no-pool Eagle defined core component. If the connection should be encrypted, set ComponentName to eagle-amqssl-no-pool.

...

The Destination Type should be set to TOPIC or ALIAS.

The Connection Names are designed for this purpose: wmq-tdseagle-amq-tds.

The Durable Subscription Name should be set to a name used for the durable topic subscription.

...