Versions Compared

Key

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

...

  1. Configure the connection to the Message Broker as described in Configure a JMS Connection. 
  2. Configure the destination queue or topic in a stream in Message Center Console as shown in Configure a JMS Destination Stream.
  3. Change the w_config_custom.inc to configure the JMS stream name as shown in Configure Extract Service JMS Stream Name.
  4. Restart the Extract Service (MC2) after completing the configuration.

...

  • EagleExtractRecordCount - the number of records in the message.
  • EagleExtractSequenceNumber - the sequence number of the message when nuggetizing is enabled.
  • EagleExtractFileName - the file name generated for the extract.
  • EagleCorrelationId - the correlation id of the extract request.

Anchor
jmsconnection
jmsconnection
Configure a JMS Connection

...

Code Block
languagejs
themeDJango
titleSample ActiveMQ Configuration
collapsetrue
{    
  "Region": "oraclesid", /*Database name (Oracle SID) on which the Extract Service is running */    
  "Connections": [        
      {    
        "ConnectionName": "extract.jms.connection",
        "ComponentName": "amq",
        "Parameters": {
           "brokerURL": "tcp://activemqhostname:activemqport"            
        }
      }
   ]
}
  1. Change the Region parameter to match the oracle SID the Eagle Extract Service is running with.
  2. Change the brokerURL with the specific ActiveMQ instance parameters. The ActiveMQ hostname and port number should be provided by the ActiveMQ broker administrators.

Configure a WebSphere MQ Connection

...

Anchor
requestsamples
requestsamples
REST and Soap Extract Examples

Send the REST Extract Results

...

to a JMS Destination

To send the extract to the JMS destination defined above, add a ExtractDeliveryMethod=JMS to the REST request as in this example:

...