Oracle8i Application Developer's Guide - XML
Release 3 (8.1.7)

Part Number A86030-01

Library

Solution Area

Contents

Index

Go to previous page Go to beginning of chapter Go to next page

B2B XML Application: Step by Step , 16 of 32


Retailer-Supplier Transactions

Figure 13-5 shows the business flow of the Retailer - Supplier transactions. These transactions are summarized here.

The detailed transactions and how to run the B2B XML application is provided in "Running the B2B XML Application: Detailed Procedure" .

1 Retailer Browses the Supplier's OnLine "Hi-Tech Mall" Catalog

The following Retailer transactions occur:

  1. The Retailer logs in from their web site using XSL Servlet.

  2. Retailer browses the Supplier's on-line catalog. Retailer selects a product and quantity.

2 Retailer Places Order

When the Retailer places the order, the Retailer then needs to either confirm the order and cost, by clicking on "Place Order", or cancel "Give Up" the order.

3 Retailer Confirms and Commits to Sending the Order

If Retailer confirms the order by clicking on, "Place Order", this triggers the generation of an XML document containing the order data. The Retailer application sends this XML order document to the Supplier by way of the AQ Broker-Transformer application.

The Action Handler "XSQL Script Example 5: Starts B2B Process -- placeorder.xsql" of the XSQL Servlet is the key component in the whole process. It ensure that this transaction is inserted into the retailer database table, Ord.

The Action Handler also sends the XML order on to the AQ Broker-Transformer.

4 AQ Broker-Transformer Transforms the XML Document According to the Supplier's Format

When the AQ Broker-Transformer receives the XML document the following actions transpire:

  1. The AQ Broker-Transfomer waits for the queue [READS] from the Retailer that they have sent an order. See Figure 13-6.

Figure 13-6 B2B XML Application: AQ Messaging Flow


  • The AQ Broker receives the XML document order message, and determines the following information from the message:

  • The AQ Broker-Transformer refers to the Stylesheets table and according to the From, To, and Task criteria, selects the appropriate XSL stylesheet. The stylesheets are stored in CLOBs in the Stylesheets table in the XSL column. AQ Broker-Transformer accesses the database and stylesheets by means of JDBC.

  • XSL-T Processor is informed by AQ Broker-Transformer application to apply the selected and retrieved XSL stylesheet to the XML document containing the order data. The XSL-T Processor outputs the reformatted XML order.

  • AQ Broker-Transformer uses AQ to send [WRITE] the transformed XML document to the "TO" Supplier destination.


    Note:

    If a DTD (XML Schema) is used, it would be applied before processing in the AQ Broker phase. In this example, for simplicity, we assume that the document is always sent in the same format. 


    The schema used by the AQ Broker-Transformer is shown inFigure 13-4.

    5 Supplier Application Parses Incoming Reformatted XML Order Document. Inserts Order into the Supplier Database

    When the Supplier receives the reformatted XML order document from the AQ Broker-Transformer, the following protocols transpire:

    1. The Supplier waits for the queue from the AQ Broker-Transformer that a order is pending from a Retailer. The Supplier dequeues the AQ message.

    2. The Supplier parses the XML document and INSERTs the order into the Supplier database by means of JDBC.

    6 Supplier Application Alerts Supplier of Pending Order

    When the Supplier application has inserted the XML document into the Supplier database the following actions transpire:

    1. Supplier Application Alerts the Supplier of the Order. The order status is kept at "pending".

    2. The Supplier, after checking if the product(s) ordered are available, and the Retailer's credit, decides to ship the product(s). Supplier clicks on "Ship".

    3. The Supplier application updates the Supplier database Ord table's status column to "shipped".

    7 AQ Broker-Transformer Transforms the XML Order According to Retailer's Format

    1. AQ Broker-Transformer waits [READS] for a queue from the Supplier.

    2. When the XML Order Shipped document is received, the AQ Broker-Transformer refers to the Stylesheets table in the Transformer database, and according to the From, To, and Task criteria, selects the appropriate XSL stylesheet. The stylesheets are stored in CLOBs in the Stylesheets table in the XSL column. AQ Broker-Transformer accesses the database and stylesheets by means of JDBC.

    3. AQ Broker-Transformer uses AQ to send [WRITE] the reformatted XML order update document to the "TO" Retailer destination.

    8 Retailer Application Updates the Ord and Line_Item Tables

    1. Retailer application updates the Retailer database with new "shipped" order status information. The Ord table is updated.

    2. This information is viewed by the Retailer from any device. The status is seen as "Shipped".


  • Go to previous page Go to beginning of chapter Go to next page
    Oracle
    Copyright © 1996-2000, Oracle Corporation.

    All Rights Reserved.

    Library

    Solution Area

    Contents

    Index