BEA Logo BEA WebLogic Tuxedo Connector Release 6.1

  Corporate Info  |  News  |  Solutions  |  Products  |  Partners  |  Services  |  Events  |  Download  |  How To Buy

   WebLogic Tuxedo Connector ATMI Programmer's Guide:   Previous topic   |   Next topic   |   Contents   

 

Developing WebLogic Tuxedo Connector Client Applications

 

The following sections describe how to create client programs that take user input and send service requests to a server process that offers a requested service.

WebLogic Tuxedo Connector JATMI client classes are used to create clients that access services found in Tuxedo.

Note: For more information on JATMI classes, view the WebLogic Tuxedo Connector Javadoc by opening the index.html file in the doc directory of your WebLogic Tuxedo Connector installation.

Joining and Leaving Applications

Tuxedo and WebLogic Tuxedo Connector have different approaches to connect to services.

Joining an Application

The following section compares how Tuxedo and WebLogic Tuxedo Connector join an application:

Leaving an Application

The following section compares how Tuxedo and WebLogic Tuxedo Connector leave an application:

Basic Client Operation

A client process uses Java and JATMI primitives to provide the following basic application tasks:

A client may send and receive any number of service requests before leaving the application.

Get a Tuxedo Object

Establish a connection to a remote domain by using the TuxedoConnectionFactory to lookup "tuxedo.services.TuxedoConnection" in the JNDI tree and get a TuxedoConnection object using getTuxedoConnection().

Perform Message Buffering

Use the following buffer types when sending and receiving messages between your application and Tuxedo:

Table 2-1 TypedBuffers

Buffer Type

Description

TypedString

 

Buffer type used when the data is an array of characters that terminates with the null character. Tuxedo equivalent: STRING.

 

TypedCArray

 

Buffer type used when the data is an undefined array of characters (byte array), any of which can be null. Tuxedo equivalent: CARRAY.

 

TypedFML

 

Buffer type used when the data is self-defined. Each data field carries its own identifier, an occurrence number, and possibly a length indicator. Tuxedo equivalent: FML.

 

TypedFML32

 

Buffer type similar to TypeFML but allows for larger character fields, more fields, and larger overall buffers. Tuxedo equivalent: FML32.

 

TypedXML

 

Buffer type used when data is an XML based message. Tuxedo equivalent: XML for Tuxedo Release 7.1 and higher.

 

Send and Receive Messages

Use the following JATMI primitives to send and receive messages between your application and Tuxedo:

Table 2-2 JATMI Primitives

Name

Operation

tpacall

 

Use for asynchronous invocations of a Tuxedo service.

 

tpcall

 

Use for synchronous invocation of a Tuxedo service.

 

tpdequeue

 

Use for receiving messages from a Tuxedo /Q.

 

tpenqueue

 

Use for placing a message on a Tuxedo /Q.

 

tpgetreply

 

Use for retrieving replies from a Tuxedo service.

 

Closing a Connection

Use tpterm() to close a connection to an object and prevent future operations on this object. This is the equivalent of the JCA close().

Example Client Application

The following Java code provides an example of the ToupperBean client application which sends a string argument to a server and receives a reply string from the server.

Listing 2-1 Example Client Application


.
.
.
public String Toupper(String toConvert)
   throws TPException, TPReplyException
{
     Context ctx;
     TuxedoConnectionFactory tcf;
     TuxedoConnection myTux;
     TypedString myData;
      Reply myRtn;
     int status;

     log("toupper called, converting " + toConvert);

     try {
           ctx = new InitialContext();
          tcf = (TuxedoConnectionFactory) ctx.lookup(
                 "tuxedo.services.TuxedoConnection");
     }
     catch (NamingException ne) {
          // Could not get the tuxedo object, throw TPENOENT
            throw new TPException(TPException.TPENOENT, "Could not get TuxedoConnectionFactory : " + ne);
      }

     myTux = tcf.getTuxedoConnection();

     myData = new TypedString(toConvert);

     log("About to call tpcall");
      try {
          myRtn = myTux.tpcall("TOUPPER", myData, 0);
}
     catch (TPReplyException tre) {
          log("tpcall threw TPReplyExcption " + tre);
           throw tre;
     }
      catch (TPException te) {
           log("tpcall threw TPException " + te);
           throw te;
      }
      catch (Exception ee) {
           log("tpcall threw exception: " + ee);
           throw new TPException(TPException.TPESYSTEM, "Exception: " + ee);
      }
     log("tpcall successfull!");

      myData = (TypedString) myRtn.getReplyBuffer();

      myTux.tpterm(); // Closing the association with Tuxedo

      return (myData.toString());
}
.
.
.