Versions Compared

Key

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

...

A hypothetical business scenario: A web application to apply for a Tax ID Number. This example shows a web-based Tax ID Application form. The user enters data, such as first and last name, date of birth, and place of birth, in the web application form. Then the user submits the data. The web form sends the request to a the "JMSServlet" servlet. The servlet publishes the request on the JMS submission topic. The applicationFormReceiver, which is a JMS Binding component that subscribes to the submission topic, receives the request. The applicationFormReceiver sends the data to the formProcessor via the NMR. The formProcessor is a service engine that assigns the appropriate TIN to the user. The formProcessor then publishes the response to the result topic. A message driven bean (MDB) subscribes to the result topic, receives the response message, updates the TaxID database with the new Tax ID, and notifies the user that the request has been fulfilled. The user can then check the database to get the requested tax id number.

...