EntireX Version 9.7
 —  Common Integration Scenarios  —

Calling COBOL on z/OS CICS from Integration Server

There are different styles (interface types) for calling a COBOL server.

graphics/cob2is-zos-cics-solution.png

graphics/blue_1.gif Extract the interface of the COBOL server program.
graphics/blue_2.gif Generate connection and adapter services in Integration Server.
graphics/blue_3.gif Execute the call from Integration Server to the COBOL server program.

Start of instruction setTo determine the appropriate scenario

  1. First it is important to know the interface type of your COBOL server. Analyzing the technique used to access the interface with COBOL and CICS statements is the safest way to determine this. The following interface types are available and are described in the IDL Extractor for COBOL documentation:

    There is no clear and easy indication how to identify the interface type of a CICS COBOL server without COBOL and CICS knowledge. Below are some criteria that might help to determine the interface type. If you are unsure, consult a CICS COBOL specialist.

    Note:
    The most used interface type is the DFHCOMMAREA interface. Large buffer and channel container interfaces are used much less frequently.

  2. Second, for the DFHCOMMAREA interface only, you need to decide for the zero footprint or the CICS RPC Server approach. Here are some guidelines:

    Use the zero footprint approach if:

    Use the CICS RPC Server if:

When you are sure which interface type and approach you are using, continue with the appropriate scenario:

Top of page