Versions Compared

Key

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

...

  1. JMSClient, through ActiveMQConnectionFactory, connects to the topic named "demo.org.servicemix.source" and sends a text message.
  2. jencks (the JCA resource adapter) listens on port 61616 for messages.
  3. inputReceiver subscribes to the "demo.org.servicemix.source" topic via jencks and receives the JMS message.
  4. inputReceiver normalizes the JMS message and sends it to outputSender via the Normalized Message Router (NMR).
  5. outputSender marshals the normalized message to a JMS message and uses jmsTemplate to publish the message on the "demo.org.servicemix.result" topic.
  6. jmsTemplate publishes it on the "demo.org.servicemix.result" topic using jmsFactory to get a connection to the result topic.
  7. JMSClient, also a subscriber of topic "demo.org.servicemix.result," receives back the message.
  8. The response is printed on the console.

...