Design the outline of a BPEL process that the vendor can use to describe the following business process:

When you buy something over the Internet, you send the vendor the name, catalog number, and price of the item you want. Then the vendor sends you a form to fill out, containing the name, catalog number, and price of the item and requesting your name, address, credit card number, and expiration date. You return the form to the vendor. The vendor then sends your name, credit card number, and the price of the item to the credit card company to be approved. After it is approved, the vendor sends you a confirmation message. Then it sends a message to the warehouse to ship the item.


Outline of vendor BPEL process









Computer Science & Information Technology

You might also like to view...

What does the following command show?

Router(config)# ipv6 route 2001:0db8:ABCD::/32 FA0/0

Computer Science & Information Technology

FTP stands for ____________________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

How does the beginning of a motion path appear after it has been applied?

A) Large arrow B) Yellow circle C) Small arrow D) Red circle

Computer Science & Information Technology

public class Secret{    private int x;    private static int y;    public static int count;    public int z;          public Secret()    {        x = 0;        z = 1;    }    public Secret(int a)    {        x = a;    }    public Secret(int a, int b)    {        x = a;        y = b;    }    public String toString()    {        return ("x = " + x + ", y = " + y + ",                  count = " + count);    }    public static void incrementY()    {        y++;    }}What might the heading of the copy constructor for the class in the accompanying figure look like?

A. public Secret(Secret s) B. private copySecret() C. Secret copySecret = new Secret() D. public copySecret(int a, int b)

Computer Science & Information Technology