| Package | Description | 
|---|---|
| weblogic.wtc.gwt | 
 
    Provides useful WTC GWT Domain utilities. 
 | 
| weblogic.wtc.jatmi | 
 
    Provides JATMI primitives used to begin and end 
    transactions, allocate and free buffers, and provide the communication between 
    clients and servers. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
CallDescriptor | 
TuxedoConnection.tpacall(String svc,
       TypedBuffer data,
       int flags)
This calls the other tpacall with null as the reply object 
 | 
CallDescriptor | 
TuxedoConnection.tpacall(String svc,
       TypedBuffer data,
       int flags,
       TpacallAsyncReply callBack)
This implementation of tpacall is aware of the domain configuration
 files which correlate services with local and remote domains. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static boolean | 
CallDescriptorUtil.isCallDescriptorEqual(CallDescriptor ct1,
                     CallDescriptor ct2)
Compare two CallDescriptor 
 | 
void | 
TuxedoConnection.tpcancel(CallDescriptor cd,
        int flags)
This implementation knows about the tuxedo call descriptor and will attempt to
 cancel the outstanding tpacall request. 
 | 
Reply | 
TuxedoConnection.tpgetrply(CallDescriptor cd,
         int flags)
This implementation does not yet handle the case of blocking replies
 with the TPGETANY flag. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
CallDescriptor | 
TuxedoReply.getCallDescriptor()
Returns the service descriptor returned from tpgetrply 
 | 
CallDescriptor | 
Reply.getCallDescriptor()
Returns the service descriptor returned from tpgetrply 
 | 
CallDescriptor | 
ApplicationToMonitorInterface.tpacall(String svc,
       TypedBuffer data,
       int flags)
Sends a deferred asyncronous request message to a Tuxedo service. 
 | 
CallDescriptor | 
ApplicationToMonitorInterface.tpacall(String svc,
       TypedBuffer data,
       int flags,
       TpacallAsyncReply callBack)
Sends an asyncronous request message to a Tuxedo service. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
TpacallAsyncReply.failure(ApplicationToMonitorInterface atmi,
       CallDescriptor cd,
       TPException failureReply)
Called if the service returned with a failure code. 
 | 
void | 
TuxedoReply.setCallDescriptor(CallDescriptor cd)
Sets the call descriptor to be returned with this reply 
 | 
void | 
TpacallAsyncReply.success(ApplicationToMonitorInterface atmi,
       CallDescriptor cd,
       Reply successReply)
Called if the service returned successfully. 
 | 
void | 
ApplicationToMonitorInterface.tpcancel(CallDescriptor cd,
        int flags)
Cancels a call descriptor for outstanding reply. 
 | 
Reply | 
ApplicationToMonitorInterface.tpgetrply(CallDescriptor cd,
         int flags)
Returns a reply using the call descriptor returned
 by a deferred  
tpacall. |