Version 9.7
 —  EntireX Adapter Installation and User's Guide  —

Preparing IBM CICS® for ECI

This document describes how to set up the External Call Interface (ECI) within CICS. It covers the following topics:

Important:
If the terms and concepts in this chapter are unfamiliar to you, please work with the appropriate CICS system programmer. Only authorized personnel should make changes to mainframe computer systems.


Defining an ECI Service

The DFH$SOT group contains three TCP/IP services. For our purposes, the pertinent service is ECI. The ECI service has, defined in it, the TCP/IP port number through which the CICS region listens to the ECI. By default, IBM predefines the TCP/IP port number as "1435". If this port is already reserved for another CICS region, you may have to define a different port number in the ECI service. For more information, see your IBM documentation.

You must specify SOCKETCLOSE(NO) on the TCPIPSERVICE. If you need to specify a timeout for a task initiated using ECI over TCP/IP, specify an RTIMOUT value on the mirror transaction. Note that the standard mirror, CPMI, is defined with profile DFHCICSA, which specifies RTIMOUT(NO). This means that long running mirrors will wait indefinitely for data, unless you specify a different RTIMOUT for the mirror transaction.

Start of instruction setTo define an ECI service without security

  1. Use CEDA ALTER to supply the ECI TCPIPService with a unique TCP/IP port number.

  2. Use CEDA ALTER to set the ECI ATtachsec to "LOCAL"

Start of instruction setTo define an ECI service with security

  1. Copy the ECI TCPIPService to an ECIS TCPIPService.

  2. Use CEDA ALTER to supply the ECIS TCPIPService with a unique TCP/IP port number.

  3. Use CEDA ALTER to set the ECIS ATtachsec to "VERIFY".

Top of page

Installation Verification

A successful installation should pass the following verification tests:

  1. CEMT INQUIRE TCPIPSERVICE(*) should now display your services with status OPE. A status of CLO might indicate an already used (not unique) TCP/IP port number.

  2. CEMT I TCPIPSERVICE(ECI) to verify TCPIPSERCICE in CICS.

  3. CEMT I TRA(CIEP) to verify Transaction CIEP in CICS.

  4. CEMT I PROGRAM(DFHIEP) to verify Program DFHIEP in CICS.

  5. CEMT I TRAN(CPMI) to verify Transaction CPMI in CICS.

  6. CEMT I PROGRAM(DFHMIRS) to verify Program DFHMIRS in CICS.

  7. CEMT I TD(CIEO) to verify Program TQ Queue CIEO.

  8. Verify that the groups DFHISC DFHDCTG and DFHIPECI are added to the active autoinstall

Tip:
You can check the mentioned programs and transactions and TD queues by using CEMT VERIFY TCP.

Top of page

Error Handling

This section describes the handling of errors in the CICS ECI connection or the CICS ECI RPC server.

Problem Handling
A CICS program sends abend code in response. The CICS session is closed and the next call opens a different session.
The TCP/IP connection is lost with a SocketTimeoutException. The CICS session is closed and the next call opens a different session.
The TCP/IP connection is lost with an EOFException.
  • The TCP/IP socket is closed and the next call opens a different session.

  • There are no further attempts to send bytes on the TCP/IP connection which received the EOFException.

Top of page