The J2EETM Tutorial
Home
TOC
PREV TOC NEXT Search
Feedback

Common Client Interface (CCI)

This section describes how components use the Connector architecture Common Client Interface (CCI) API and a resource adapter to access data from an EIS.

Overview of the CCI

Defined by the J2EE Connector Specification, the CCI defines a set of interfaces and classes whose methods allow a client to perform typical data access operations. Our example CoffeeEJB session bean includes methods that illustrate how to use the CCI, in particular, the following CCI interfaces and classes:

A client or application component that uses the CCI to interact with an underlying EIS does so in a prescribed manner. The component must establish a connection to the EIS's resource manager, and it does so using the ConnectionFactory. The Connection object represents the actual connection to the EIS and it is used for subsequent interactions with the EIS.

The component performs its interactions with the EIS, such as accessing data from a specific table, using an Interaction object. The application component defines the Interaction object using an InteractionSpec object. When the application component reads data from the EIS (such as from database tables) or writes to those tables, it does so using a particular type of Record instance, either a MappedRecord, IndexedRecord, or ResultSet instance. Just as the ConnectionFactory creates Connection instances, a RecordFactory creates Record instances.

Our example shows how a session bean uses a resource adapter to add and read records in a relational database. The example shows how to invoke stored procedures, which are business logic functions stored in a database and specific to an enterprise's operation. Stored procedures consist of SQL code to perform operations related to the business needs of an organization. They are kept in the database and can be invoked when needed, just as you might invoke a Java method. In addition to showing how to use the CCI to invoke stored procedures, we'll also explain how to pass parameters to stored procedures and how to map the parameter data types from SQL to those of the Java programming language.

Programming with the CCI

The code for the following example is in the examples/src/connector/cci directory.

To illustrate how to use a CCI resource adapter, we've written a session bean and a client of that bean. These pieces of code illustrate how clients invoke the different CCI methods that resource adapters built on CCI might make available. Our example uses the two sample CCI-specific resource adapters: cciblackbox_tx.rar and cciblackbox_xa.rar.

The Coffee session bean is much like any other session bean. It has a home interface (CoffeeHome), a remote interface (Coffee), and an implementation class (CoffeeEJB). To keep things simple, we've called the client CoffeeClient.

Let's start with the session bean interfaces and classes. The home interface, CoffeeHome, is like any other session bean home interface. It extends EJBHome and defines a create method to return a reference to the Coffee remote interface.

The Coffee remote interface defines the bean's two methods that may be called by a client.

public void insertCoffee(String name, int quantity)
throws RemoteException;
public int getCoffeeCount() throws RemoteException; 

Now let's examine the CoffeeEJB session bean implementation class to see how it uses the CCI.

To begin with, notice that CoffeeEJB imports the javax.resource CCI interfaces and classes, along with the javax.resource.ResourceException, and the sample cciblackbox classes.

import javax.resource.cci.*;
import javax.resource.ResourceException;
import com.sun.connector.cciblackbox.*;
Obtaining a Database Connection 

Prior to obtaining a database connection, the session bean does some set up work in its setSessionContext method. (See the following code example.) Specifically, the setSessionContext method sets the user and password values, and instantiates a ConnectionFactory. These values and objects remain available to the other session bean methods.

(In this and subsequent code examples, the numbers in the left margin correspond to the explanation that follows the code.)

   public void setSessionContext(SessionContext sc) {
        try {
            this.sc = sc;
1           Context ic = new InitialContext();
2           user = (String) ic.lookup("java:comp/env/user");
            password = (String) ic.lookup
               ("java:comp/env/password");
3           cf = (ConnectionFactory) ic.lookup
               ("java:comp/env/CCIEIS");
        } catch (NamingException ex) {
            ex.printStackTrace();
        }
    } 
  1. Establish a JNDI InitialContext.
  2. Use the JNDI InitialContext.lookup method to find the user and password values.
  3. Use the lookup method to locate the ConnectionFactory for the CCI black box resource adapter and obtain a reference to it.

CoffeeEJB uses its private method getCCIConnection method to establish a connection to the underlying resource manager or database. A client of the Coffee session bean cannot invoke this method directly. Rather, the session bean uses this method internally to establish a connection to the database. The following code uses the CCI to establish a database connection.

    private Connection getCCIConnection() {
        Connection con = null;
        try {
1           ConnectionSpec spec = 
                new CciConnectionSpec(user, password);
2           con = cf.getConnection(spec);
        } catch (ResourceException ex) {
            ex.printStackTrace();
        }
        return con;
    } 
  1. Instantiate a new CciConnectionSpec object with the user and password values obtained by the setSessionContext method. The CciConnectionSpec class is the implementation of the ConnectionSpec interface.
  2. Call the ConnectionFactory.getConnection method to obtain a connection to the database. (The reference to the ConnectionFactory was obtained in the setSessionContext method.) Use the CciConnectionSpec object to pass the required properties to the ConnectionFactory. The getConnection method returns a Connection object.

The CoffeeEJB bean also includes a private method, closeCCIConnection, to close a connection. The method invokes the Connection object's close method from within a try/catch block. Like the getCCIConnection method, this is a private method intended to be called from within the session bean.

private void closeCCIConnection(Connection con) {
    try {
        con.close();
    } catch (ResourceException ex) {
        ex.printStackTrace();
    }
} 

Database Stored Procedures

The sample CCI black box adapters call database stored procedures. It is important to understand stored procedures before delving into how to read or write data using the sample CCI black box adapters. The methods of these sample CCI adapters do not actually read data from a database or update database data. Instead, these sample CCI adapters enable you to invoke database stored procedures, and it is the stored procedures that actually read or write to the database.

A stored procedure is a business logic method or function that is stored in a database and is specific for the enterprise's business. Typically, stored procedures consist of SQL code, though in certain cases (such as with Cloudscape) they may consist of code written in the Java programming language. Stored procedures perform operations related to the business needs of an organization. They are kept in the database and applications can invoke them when needed.

Stored procedures are typically SQL statements. Our example calls two stored procedures: COUNTCOFFEE and INSERTCOFFEE. The COUNTCOFFEE procedure merely counts the number of coffee records in the Coffee table, as follows:

SELECT COUNT(*) FROM COFFEE 

The INSERTCOFFFEE procedure adds a record with two values, passed to the procedure as parameters, to the same Coffee table, as follows:

INSERT INTO COFFEE VALUES (?,?) 

Mapping to Stored Procedure Parameters

When you invoke a stored procedure from your application component you may have to pass argument values to the procedure. For example, when you invoke the INSERTCOFFEE procedure, you pass it two values for the Coffee record elements. Likewise, you must be prepared to receive values that a stored procedure returns.

The stored procedure, in turn, passes its set of parameters to the database management system (DBMS) to carry out its operation and may receive values back from the DBMS. Database stored procedures specify, for each of their parameters, the SQL type of the parameter value and the mode of the parameter. Mode can be input (IN), output (OUT), or both input and output (INOUT). An input parameter only passes data in to the DBMS while an output parameter only receives data back from the DBMS. A INOUT parameter accepts both input and output data.

When you use the CCI execute method to invoke a database stored procedure you also create an instance of an InputRecord, provided that you're passing a parameter to the stored procedure and the stored procedure you're executing returns data (possibly an OutputRecord instance). The InputRecord and OutputRecord are instances of the supported Record types: IndexedRecord, MappedRecord, or ResultSet. In our example, we instantiate an InputRecord and an OutputRecord that are both IndexedRecord instances.


Note: The CCI black box adapters only support IndexedRecord types.

The InputRecord maps the IN and INOUT parameters for the stored procedure, while the OutputRecord maps the OUT and INOUT parameters. Each element of an input or output record corresponds to a stored procedure parameter. That is, there is an entry in the InputRecord for each IN and INOUT parameter declared in the stored procedure. Not only does the InputRecord have the same number of elements as the procedure's input parameters, they are declared in the same order as in the procedure's parameter list. The same holds true for the OutputRecord, though its list of elements matches only the OUT and INOUT parameters.

For example, suppose you have a stored procedure X that declares three parameters. The first parameter is an IN parameter, the second is an OUT parameter, and the third is an INOUT parameter. The following figure shows how the elements of an InputRecord and an OutputRecord map to this stored procedure.

Figure 21 Mapping Stored Procedure Parameters to CCI Record Elements

When you use the CCI black box adapter, you designate the parameter type and mode in the same way, though the underlying Oracle or Cloudscape DBMS declare the mode differently. Oracle designates the parameter's mode in the stored procedure declaration, along with the parameter's type declaration. For example, an Oracle INSERTCOFFEE procedure declares its two IN parameters as follows:

procedure INSERTCOFFEE (name IN VARCHAR2, qty IN INTEGER) 

An Oracle COUNTCOFFEE procedure declares its parameter N as an OUT parameter:

procedure COUNTCOFFEE (N OUT INTEGER) 

Cloudscape, which declares stored procedures using standard a Java method signature, indicates an IN parameter using a single value and an INOUT parameter as an array. The method's return value is the OUT parameter. For example, Cloudscape declares the IN parameters (name and qty) for insertCoffee and the OUT parameter (the method's return value) for countCoffee as follows:

public static void insertCoffee(String name, int qty)
public int countCoffee() 

If qty were an INOUT parameter, then Cloudscape would declares it as:

public static void insertCoffee(String name, int[] qty) 

Oracle would declare it as:

procedure INSERTCOFFEE (name IN VARCHAR2, qty INOUT INTEGER) 

You must also map the SQL type of each value to its corresponding Java type. Thus, if the SQL type is integer, then the InputRecord or OutputRecord element must be defined as a Integer object. If the SQL type is a VARCHAR, then the Java type must be a String object. Thus, when you add the element to the Record, you declare it to be an object of the proper type. For example, add an integer and a string element to an InputRecord as follows:

iRec.add (new Integer (intval));
iRec.add (new String ("Mocha Java")); 

Note: The JDBC Specification defines the SQL to Java type mapping.

Reading Database Records

The getCoffeeCount method of CoffeeEJB illustrates how to use the CCI to read records from a database table. This method does not directly read the database records itself; instead, it invokes a procedure stored in the database called COUNTCOFFEE. It is the stored procedure that actually reads the records in the database table.

The CCI provides interfaces for three types of records: IndexedRecord, MappedRecord, and ResultSet. These three record types inherit from the base interface, Record. They differ only in how they map the record elements within the record. Our example uses IndexedRecord, which is the only record type currently supported. IndexedRecord holds its record elements in an ordered, indexed collection based on java.util.List. As a result, we use an Iterator object to access the individual elements in the list.

Let's begin by looking at how the getCoffeeCount method uses the CCI to invoke a database stored procedure. Again, note that the numbers in the margin to the left of the code correspond to the explanation after the code example.

    public int getCoffeeCount() {
        int count = -1;
        try {
1           Connection con = getCCIConnection();
2           Interaction ix = con.createInteraction();
3           CciInteractionSpec iSpec =
               new CciInteractionSpec();
4           iSpec.setSchema(user);
            iSpec.setCatalog(null);
            iSpec.setFunctionName("COUNTCOFFEE");
5           RecordFactory rf = cf.getRecordFactory();
6           IndexedRecord iRec =
               rf.createIndexedRecord("InputRecord");
7           Record oRec = ix.execute(iSpec, iRec);
8           Iterator iterator = 
               ((IndexedRecord)oRec).iterator();
9           while(iterator.hasNext()) {   
                Object obj = iterator.next();
                if(obj instanceof Integer) {
                    count = ((Integer)obj).intValue();
                }
                else if(obj instanceof BigDecimal) {
                    count = ((BigDecimal)obj).intValue();
                }
            }
10          closeCCIConnection(con);
        }catch(ResourceException ex) {
            ex.printStackTrace();
        }
        return count;
    } 
  1. Obtain a connection to the database.
  2. Create a new Interaction instance. The getCoffeeCount method creates a new Interaction instance because it is this object that enables the session bean to execute EIS functions such as invoking stored procedures.
  3. Instantiate a CciInteractionSpec object. The session bean must pass certain properties to the Interaction object, such as schema name, catalog name, and the name of the stored procedure. It does this by instantiating a CciInteractionSpec object. The CciInteractionSpec is the implementation class for the InteractionSpec interface, and it holds properties required by the Interaction object to interact with an EIS instance. (Note that our example uses a Cloudscape database, which does not require a catalog name.)
  4. Set values for the CciInteractionSpec instance's fields. The session bean uses the CciInteractionSpec methods setSchema, setCatalog, and setFunctionName to set the required values into the instance's fields.Our example passes COUNTCOFFEE to setFunctionName because this is the name of the stored procedure it intends to invoke.
  5. The getCoffeeCount method uses the ConnectionFactory to obtain a reference to a RecordFactory so that it can create an IndexedRecord instance. We obtain an IndexedRecord (or a MappedRecord or a ResultSet) using a RecordFactory.
  6. Invoke the createIndexedRecord method of RecordFactory. This method creates a new IndexedRecord using the name InputRecord, which is passed to it as an argument.
  7. The getCoffeeCount method has completed the required set-up work and it can invoke the stored procedure COUNTCOFFEE. It does this using the Interaction instance's execute method. Notice that it passes two objects to the execute method: the InteractionSpec object, whose properties reference the COUNTCOFFEE stored procedure, and the IndexedRecord object, which the method expects to be an input Record. The execute method returns an output Record object.
  8. The getCoffeeCount method uses an Iterator to retrieve the individual elements from the returned IndexedRecord. It casts the output Record object to an IndexedRecord. IndexedRecord contains an iterator method that it inherits from java.util.List.
  9. Retrieve each element in the returned record object using the iterator.hasNext method. Each extracted element is an Object, and the bean evaluates whether it is an integer or decimal value and processes it accordingly.
  10. Close the connection to the database.

Inserting Database Records

The CoffeeEJB session bean implements the insertCoffee method to add new records into the Coffee database table. This method invokes the INSERTCOFFEE stored procedure, which inserts a record with the values (name and qty) passed to it as arguments.

The insertCoffee method shown here illustrates how to use the CCI to invoke a stored procedure that expects to be passed argument values. This example shows the code for the insertCoffee method and is followed by an explanation.

    public void insertCoffee(String name, int qty) {
        try {
1           Connection con = getCCIConnection();
2           Interaction ix = con.createInteraction();
3           CciInteractionSpec iSpec = 
               new CciInteractionSpec();
4           iSpec.setFunctionName("INSERTCOFFEE");
            iSpec.setSchema(user);
            iSpec.setCatalog(null);
5           RecordFactory rf = cf.getRecordFactory();
6           IndexedRecord iRec =
               rf.createIndexedRecord("InputRecord");
7           boolean flag = iRec.add(name);
            flag = iRec.add(new Integer(qty));
8           ix.execute(iSpec, iRec);
9           closeCCIConnection(con);
        }catch(ResourceException ex) {
            ex.printStackTrace();
        }
    } 
  1. Establish a connection to the database.
  2. Create a new Interaction instance for the connection so that the bean can execute the database's stored procedures.
  3. Instantiate a CciInteractionSpec object so that the bean can pass the necessary properties-schema name, catalog name, stored procedure name-to the Interaction object. The CciInteractionSpec class implements the InteractionSpec interface and it holds properties that the Interaction object requires to communicate with the database instance.
  4. Set the required values into the new CciInteractionSpec instance's fields, using the instance's setSchema, setCatalog, and setFunctionName methods. Our example passes INSERTCOFFEE to setFunctionName and the user to setSchema.
  5. Obtain a reference to a RecordFactory using the ConnectionFactory objects's getRecordFactory method.
  6. Invoke the RecordFactory object's createIndexedRecord method to create a new IndexedRecord with the name InputRecord.
  7. Use the IndexedRecord add method to set the values for the two elements in the new record. Call the add method once for each element. Our example sets the first record element to the name value and the second element to the qty value. Notice that qty is set to an Integer object when passed to the add method. The CoffeeEJB session bean is now ready to add the new record to the database.
  8. Call the Interaction instance's execute method to invoke the stored procedure INSERTCOFFEE. Just as we did when invoking the COUNTCOFFEE procedure, we pass two objects to the execute method: the InteractionSpec object with the correctly set properties for the INSERTCOFFEE stored procedure and the IndexedRecord object representing an input Record. The execute method is not expected to return anything in this case.
  9. Close the connection to the database.

Writing a CCI Client

A client application that relies on a CCI resource adapter is very much like any other J2EE client that uses enterprise bean methods. Our CoffeeClient application uses the methods of the CoffeeEJB session bean to access the Coffee table in the underlying database. CoffeeClient invokes the Coffee.getCoffeeCount method to read the Coffee table records and the Coffee.insertCoffee method to add records to the table.

CCI Tutorial

This tutorial shows you how to deploy and test the sample CCI black box adapter with the code described in the preceding sections. The source code is in examples/src/connector/cci.

Deploy the Resource Adapter

  1. Use the deploytool utility to deploy the CCI black box resource adapter. Specify the name of the resource adapter's RAR file (cciblackbox-tx.rar), plus the name of the server (localhost).
    UNIX:
    deploytool -deployConnector \
    $J2EE_HOME/lib/connector/cciblackbox-tx.rar localhost 
    
    Windows:
    (Note that this command and all subsequent Windows commands must be entered on a single line.)
    deploytool -deployConnector
    %J2EE_HOME%\lib\connector\cciblackbox-tx.rar localhost 
    
  2. Next, add a connection factory for the deployed CCI adapter. The connection factory supplies a data source connection for the adapter. Use j2eeadmin to create the connection factory, specifying the adapter's JNDI name plus the server name. Here, we add a connection factory for our CCI adapter whose JNDI name is eis/CciBlackBoxTx on the server localhost.
    UNIX:
    j2eeadmin -addConnectorFactory \
    eis/CciBlackBoxTx cciblackbox-tx.rar 
    
    Windows:
    j2eeadmin -addConnectorFactory 
    eis/CciBlackBoxTx cciblackbox-tx.rar 
    
  3. Verify that the resource adapter has been deployed.
    deploytool -listConnectors localhost 
    

The deploytool utility displays these lines:

Installed connector(s):
	Connector Name: cciblackbox-tx.rar
Installed connection factories:
	Connection Factory JNDI name: eis/CciBlackBoxTx 

Set Up the Database

Cloudscape:

  1. Create the stored procedure.
    1. To compile the stored procedure, go to the examples/src directory and type ant procs. This command will put the Procs.class file in the examples/build/connector/procs directory.
    2. Locate the bin/userconfig.sh (UNIX) or bin\userconfig.bat (Windows) file in your J2EE SDK installation. Edit the file so that the J2EE_CLASSPATH variable points to the directory that contains the Procs.class file.
    3. Restart the Cloudscape server.
    4. Go to the examples/src directory and type ant create-procs-alias. This command creates aliases for the methods in Procs.class. Method aliases are the means by which Cloudscape simulates stored procedures.
  2. To create the Coffee table, go to the examples/src directory and type ant create-coffee-table.

Oracle:

  1. Start the database server.
  2. Run the examples/src/connector/sql/oracle.sql script, which creates both the stored procedures and the Coffee table.

Create the J2EE Application

  1. To compile the application source code, go to the examples/src directory and type ant cci.
  2. In the deploytool, select File->New Application and create an application named CoffeeApp.
  3. Select File->New Enterprise Bean Wizard and fill in the following dialog boxes.
  4. General Dialog Box
    1. Select the Stateful Session Bean radio button.
    2. In the Enterprise Bean Name field, enter CoffeeBean.
  5. Environment Entiries Dialog Box
    Add the entries shown in the following table. For Cloudscape, placeholder strings such as xxx are required, but for other databases you should enter the actual values .

    Table 38 Environment Entries
    Coded Entry
    Type
    Value
    user
    String
    xxx
    password
    String
    xxx
  6. Resource References Dialog Box:
    1. Click Add.
    2. Enter the values specified in the following table.

      Table 39 Resource Reference Values
      Field
      Value
      Coded Name
      CCIEIS
      Type
      javax.resource.cci.ConnectionFactory
      Authentication
      Application
      JNDI Name
      eis/CciBlackBoxTx
      User Name
      xxx
      Password
      xxx
    The eis/CciBlackBoxTx JNDI name matches the name of the connection factory you added in step 2 of Deploy the Resource Adapter. The CCIEIS value corresponds to the following line in the CoffeeEJB.java source code:
    cf = (ConnectionFactory) ic.lookup("java:comp/env/CCIEIS"); 
    
  7. Transaction Management Dialog Box
    1. Select Container-Managed Transactions.
    2. For the CoffeeEJB business methods, select Required in the Transaction Type column.
  8. Click Finish to exit the wizard.
  9. Create a J2EE application client.
    1. Select New->Application Client
    2. Name the client CoffeeClient.
    3. Add the ejb/SimpleCoffee enterprise bean reference.
  10. Select Tools->Deploy.
    1. In the Introduction dialog box, select Return Client Jar.
    2. In the JNDI Names dialog box, verify that the JNDI names in the following table have been specified.

      Table 40 JNDI Names
      Comp. Name or
      Ref. Type
      JNDI Name
      CoffeeBean
      MyCoffee
      CCIEIS
      eis/CciBlackBoxTx
      ejb/SimpleCoffee
      MyCoffee

Test the Resource Adapter

  1. In a terminal window, set the APPCPATH environment variable to the name of the stub client JAR file (CoffeeAppClient.jar).
  2. Go to the directory containing the application EAR file.
  3. Run the application with the runclient script. In the following example, the application EAR file is CoffeeApp.ear and the name of the J2EE application client is CoffeeClient:
    runclient -client CoffeeApp.ear -name CoffeeClient 
    
  4. In the login dialog, enter guest as the user name and guest123 as the password.
  5. The application displays the following lines:
    Coffee count = 0
    Coffee count = 3 
     
    
Home
TOC
PREV TOC NEXT Search
Feedback