CICS® Transaction Gateway Programming Reference v1.1.0.0

com.ibm.ctg.client
Interface ECIReturnCodes

All Known Implementing Classes:
ECIRequest, ECIResourceAdapterRc

public interface ECIReturnCodes

Gateway ECI Return codes.


Field Summary
static java.lang.String[] astrCics_Rc
          Error code enumeration.
static java.lang.String[] astrCics_Rc2
          Error code enumeration.
static int ECI_ERR_ALREADY_ACTIVE
          An attempt was made to continue an existing logical unit of work, but there was an outstanding asynchronous call for the same logical unit of work.
static int ECI_ERR_CALL_FROM_CALLBACK
          On the CICS client, the call was made from a callback routine.
static int ECI_ERR_CICS_DIED
          The specified server is no longer available.
static int ECI_ERR_EXEC_NOT_RESIDENT
          Deprecated.  
static int ECI_ERR_INVALID_CALL_TYPE
          The call type was not valid.
static int ECI_ERR_INVALID_DATA_AREA
          Data area is not valid.
static int ECI_ERR_INVALID_DATA_LENGTH
          Invalid data length.
static int ECI_ERR_INVALID_EXTEND_MODE
          The extend mode field is invalid.
static int ECI_ERR_INVALID_VERSION
          Version is not valid.
static int ECI_ERR_LUW_TOKEN
          The value in Luw_Token is incorrect.
static int ECI_ERR_MAX_SESSIONS
          Not enough communication resources to satisfy request.
static int ECI_ERR_MAX_SYSTEMS
          Reached limit on maximum number of systems.
static int ECI_ERR_MORE_SYSTEMS
          Insufficient space for server list.
static int ECI_ERR_MSG_QUAL_IN_USE
          The supplied message qualifier is already in use and cannot be used at this time.
static int ECI_ERR_NO_CICS
          No CICS system available.
static int ECI_ERR_NO_MSG_QUALS
          An attempt to auto generate a message qualifier failed.
static int ECI_ERR_NO_REPLY
          No reply received.
static int ECI_ERR_NO_SESSIONS
          Not enough communication resources to satisfy request.
static int ECI_ERR_NO_SYSTEMS
          No CICS servers could be located.
static int ECI_ERR_NULL_MESSAGE_ID
          Not returned by the CICS Transaction Gateway Java API.
static int ECI_ERR_NULL_SEM_HANDLE
          Not returned by the CICS Transaction Gateway Java API.
static int ECI_ERR_NULL_WIN_HANDLE
          Not returned by the CICS Transaction Gateway Java API.
static int ECI_ERR_REQUEST_TIMEOUT
          The value supplied for timeout is negative.
static int ECI_ERR_RESOURCE_SHORTAGE
          Not enough resource to complete the request.
static int ECI_ERR_RESPONSE_TIMEOUT
          The ECI call timed out.
static int ECI_ERR_ROLLEDBACK
          An attempt was made to commit a logical unit of work, but the server was unable to commit the changes, and backed them out instead.
static int ECI_ERR_SECURITY_ERROR
          An invalid combination of user ID and password was specified.
static int ECI_ERR_SYSTEM_ERROR
          An internal system error occurred.
static int ECI_ERR_THREAD_CREATE_ERROR
          Error creating thread.
static int ECI_ERR_TRANSACTION_ABEND
          The CICS transaction abended.
static int ECI_ERR_UNKNOWN_SERVER
          The requested server could not be located.
static int ECI_ERR_XID_INVALID
          No transaction exists with the specified XID
static int ECI_NO_ERROR
          The function completed normally.
 

Field Detail

ECI_NO_ERROR

static final int ECI_NO_ERROR
The function completed normally.

See Also:
Constant Field Values

ECI_ERR_INVALID_DATA_LENGTH

static final int ECI_ERR_INVALID_DATA_LENGTH
Invalid data length.

See Also:
Constant Field Values

ECI_ERR_INVALID_EXTEND_MODE

static final int ECI_ERR_INVALID_EXTEND_MODE
The extend mode field is invalid.

See Also:
Constant Field Values

ECI_ERR_NO_CICS

static final int ECI_ERR_NO_CICS
No CICS system available.

See Also:
Constant Field Values

ECI_ERR_CICS_DIED

static final int ECI_ERR_CICS_DIED
The specified server is no longer available.

See Also:
Constant Field Values

ECI_ERR_REQUEST_TIMEOUT

static final int ECI_ERR_REQUEST_TIMEOUT
The value supplied for timeout is negative.

See Also:
Constant Field Values

ECI_ERR_NO_REPLY

static final int ECI_ERR_NO_REPLY
No reply received.

See Also:
Constant Field Values

ECI_ERR_RESPONSE_TIMEOUT

static final int ECI_ERR_RESPONSE_TIMEOUT
The ECI call timed out.

See Also:
Constant Field Values

ECI_ERR_TRANSACTION_ABEND

static final int ECI_ERR_TRANSACTION_ABEND
The CICS transaction abended.

See Also:
Constant Field Values

ECI_ERR_EXEC_NOT_RESIDENT

@Deprecated
static final int ECI_ERR_EXEC_NOT_RESIDENT
Deprecated. 
See Also:
Constant Field Values

ECI_ERR_LUW_TOKEN

static final int ECI_ERR_LUW_TOKEN
The value in Luw_Token is incorrect.

See Also:
Constant Field Values

ECI_ERR_SYSTEM_ERROR

static final int ECI_ERR_SYSTEM_ERROR
An internal system error occurred.

See Also:
Constant Field Values

ECI_ERR_NULL_WIN_HANDLE

static final int ECI_ERR_NULL_WIN_HANDLE
Not returned by the CICS Transaction Gateway Java API.

See Also:
Constant Field Values

ECI_ERR_NULL_MESSAGE_ID

static final int ECI_ERR_NULL_MESSAGE_ID
Not returned by the CICS Transaction Gateway Java API.

See Also:
Constant Field Values

ECI_ERR_THREAD_CREATE_ERROR

static final int ECI_ERR_THREAD_CREATE_ERROR
Error creating thread.

See Also:
Constant Field Values

ECI_ERR_INVALID_CALL_TYPE

static final int ECI_ERR_INVALID_CALL_TYPE
The call type was not valid.

See Also:
Constant Field Values

ECI_ERR_ALREADY_ACTIVE

static final int ECI_ERR_ALREADY_ACTIVE
An attempt was made to continue an existing logical unit of work, but there was an outstanding asynchronous call for the same logical unit of work.

See Also:
Constant Field Values

ECI_ERR_RESOURCE_SHORTAGE

static final int ECI_ERR_RESOURCE_SHORTAGE
Not enough resource to complete the request.

See Also:
Constant Field Values

ECI_ERR_NO_SESSIONS

static final int ECI_ERR_NO_SESSIONS
Not enough communication resources to satisfy request.

See Also:
Constant Field Values

ECI_ERR_NULL_SEM_HANDLE

static final int ECI_ERR_NULL_SEM_HANDLE
Not returned by the CICS Transaction Gateway Java API.

See Also:
Constant Field Values

ECI_ERR_INVALID_DATA_AREA

static final int ECI_ERR_INVALID_DATA_AREA
Data area is not valid.

See Also:
Constant Field Values

ECI_ERR_INVALID_VERSION

static final int ECI_ERR_INVALID_VERSION
Version is not valid.

See Also:
Constant Field Values

ECI_ERR_UNKNOWN_SERVER

static final int ECI_ERR_UNKNOWN_SERVER
The requested server could not be located.

See Also:
Constant Field Values

ECI_ERR_CALL_FROM_CALLBACK

static final int ECI_ERR_CALL_FROM_CALLBACK
On the CICS client, the call was made from a callback routine.

See Also:
Constant Field Values

ECI_ERR_MORE_SYSTEMS

static final int ECI_ERR_MORE_SYSTEMS
Insufficient space for server list.

See Also:
Constant Field Values

ECI_ERR_NO_SYSTEMS

static final int ECI_ERR_NO_SYSTEMS
No CICS servers could be located.

See Also:
Constant Field Values

ECI_ERR_SECURITY_ERROR

static final int ECI_ERR_SECURITY_ERROR
An invalid combination of user ID and password was specified.

See Also:
Constant Field Values

ECI_ERR_MAX_SYSTEMS

static final int ECI_ERR_MAX_SYSTEMS
Reached limit on maximum number of systems.

See Also:
Constant Field Values

ECI_ERR_MAX_SESSIONS

static final int ECI_ERR_MAX_SESSIONS
Not enough communication resources to satisfy request.

See Also:
Constant Field Values

ECI_ERR_ROLLEDBACK

static final int ECI_ERR_ROLLEDBACK
An attempt was made to commit a logical unit of work, but the server was unable to commit the changes, and backed them out instead.

See Also:
Constant Field Values

ECI_ERR_XID_INVALID

static final int ECI_ERR_XID_INVALID
No transaction exists with the specified XID

See Also:
Constant Field Values

ECI_ERR_NO_MSG_QUALS

static final int ECI_ERR_NO_MSG_QUALS
An attempt to auto generate a message qualifier failed. There are no free message qualifiers.

See Also:
Constant Field Values

ECI_ERR_MSG_QUAL_IN_USE

static final int ECI_ERR_MSG_QUAL_IN_USE
The supplied message qualifier is already in use and cannot be used at this time.

See Also:
Constant Field Values

astrCics_Rc

static final java.lang.String[] astrCics_Rc
Error code enumeration. Not to be used directly.


astrCics_Rc2

static final java.lang.String[] astrCics_Rc2
Error code enumeration. Not to be used directly.


©Copyright IBM Corp. 1994, 2014
Legal