Using the PL/I Wrapper


Using the PL/I Wrapper for the Client Side

The EntireX PL/I Wrapper provides access to RPC-based components from PL/I applications. It enables you to develop both client and server applications. This section introduces the various possibilities for RPC-based client applications written in PL/I.

A step-by-step guide is provided in the section Writing Applications with the PL/I Wrapper. Read this section first before writing your first RPC client program.

Using the PL/I Wrapper for CICS

graphics/pliWrapper_cics.png

(1) The linkage name of the module can be customized, see ERXPREFIX under PL/I Preprocessor Settings.

(2) The CICS name of the module can be customized, see ERXPREFIX under PL/I Preprocessor Settings.

(3) For the target platforms, see Generating PL/I Source Files from Software AG IDL Files.

In this scenario, the PL/I RPC client customer application, every generated client interface object and the CICS generic RPC services module (PLISRVIC) are installed each as separate individual CICS programs.

The broker stub is linked together with the CICS generic rpc service (PLISRVIC) only, thus an update of the broker stub merely requires relinking and reinstalling the generic RPC service module. The client interface objects themselves are not involved.

Use the PL/I Wrapper for CICS if

  • you want to have an EXEC CICS LINK interface to your RPC stubs,

  • you wish to separate the broker stub from the client interface objects(s)

  • you require a distributed program link to the client interface object(s).

Start of instruction setTo use the PL/I Wrapper for CICS

  1. Generate the RPC stub for the target, e.g. "CICS for z/OS". See Generating PL/I Source Files from Software AG IDL Files.

  2. If necessary, use FTP to transfer the client interface object to the target platform where you write your application.

  3. Write your PL/I RPC client application (see Writing Applications with the PL/I Wrapper), taking into consideration the manner in which CICS programs are called.

  4. If necessary, use FTP to transfer the client interface object and your application to the target platform where you translate and compile your application.

  5. Set the preprocessor switch ERXTARGET in file RPCPPS (PL/I Preprocessor Settings) to "CICS".

  6. Using the CICS translator for PL/I provided with your CICS installation and a PL/I compiler supported by PL/I Wrapper, translate and compile the following:

    • the generated client interface object(s)

    • the specific RPC functions module (PLISRVS)

    • the CICS Generic RPC Service module (PLISRVIC)

    • your PL/I RPC client customer application

    Note the Hints for Compiling and Linking (Binding).

  7. Link (bind) every generated client interface object together with the specific RPC functions module (PLISRVS) to a CICS program, using the standard linker (binder) of the target platform.

  8. Link (bind) the CICS RPC service module (PLISRVIC) together with the broker stub to a CICS program, using the standard linker (binder) of the target platform. Use a broker stub supported in CICS. The CICS name of the module is PLISRVI and it can be customized, see ERXPREFIX under PL/I Preprocessor Settings.

  9. Link (bind) your PL/I RPC client customer application, using the standard linker (binder) of the target platform.

  10. Install every client interface object, the CICS RPC service module and your PL/I RPC client customer application from the previous steps as separate CICS programs.

Using the PL/I Wrapper for CICS with Call Interfaces

graphics/pliWrapper_batch.png

(1) The linkage name of the module can be customized, see ERXPREFIX under PL/I Preprocessor Settings

(2) For the target platforms, see Generating PL/I Source Files from Software AG IDL Files

The PL/I Wrapper could be used with a call interface, even in CICS. This means you build an application where the PL/I RPC client customer application, every generated client interface object, the specific RPC functions module (PLISRVS), the Batch generic RPC services module (PLISRVIB) and the broker stub are linked together to an executable application, similar to the Batch scenario.

Using a call interface within CICS may be useful if

  • the restriction of the COMMAREA length (about 31 KB) prevents you from using the CICS scenario

  • you prefer a call interface instead of EXEC CICS LINK

Start of instruction setTo use the PL/I Wrapper with a call interface within CICS

  1. Generate the client interface object for the target, e.g. "Batch for z/OS". See Generating PL/I Source Files from Software AG IDL Files.

  2. If necessary, use FTP to transfer the client interface object to the target platform where you write your application.

  3. Write your PL/I RPC client application. See Writing Applications with the PL/I Wrapper.

  4. If necessary, use FTP transfer the client interface object and your application to the target platform where you translate and compile your application.

  5. Set the preprocessor switch ERXTARGET in file RPCPPS (PL/I Preprocessor Settings) to "BATCH".

  6. Using the CICS translator for PL/I provided with your CICS installation and a PL/I compiler supported by PL/I Wrapper, translate and compile the following:

    • the generated client interface object(s)

    • the specific RPC functions module (PLISRVS)

    • the Batch RPC Service module (PLISRVIB)

    • PL/I RPC client customer application

    See Hints for Compiling and Linking (Binding).

  7. Link (bind) all translated and compiled modules together with the broker stub to a CICS program, using the standard linker (binder) of the target platform. Use a broker stub supported in CICS.

  8. Install the program within CICS.

Using the PL/I Wrapper for Batch Mode

This mode applies to z/OS.

graphics/pliWrapper_batch.png

(1) The linkage name of the module can be customized, see ERXPREFIX under PL/I Preprocessor Settings.

(2) For the target platforms see Generating PL/I Source Files from Software AG IDL Files.

In this scenario, the PL/I RPC client customer application, every generated client interface object, the specific RPC functions module (PLISRVS), the Batch generic RPC services module (PLISRVIB) and the broker stub are linked together to an executable application.

Start of instruction setTo use the PL/I Wrapper for Batch

  1. Generate the client interface objects for the target, e.g. "Batch for z/OS". See Generating PL/I Source Files from Software AG IDL Files.

  2. If necessary, use FTP to transfer the client interface object to the target platform where you write your application.

  3. Write your PL/I RPC client application. See Writing Applications with the PL/I Wrapper.

  4. If necessary, use FTP to transfer the client interface object and your application to the target platform where you compile your application.

  5. Set the preprocessor switch ERXTARGET in file RPCPPS (PL/I Preprocessor Settings) to "BATCH".

  6. Compile the following, using a PL/I compiler supported by PL/I Wrapper:

    • the generated client interface object(s)

    • the specific RPC functions module (PLISRVS)

    • the batch generic RPC service module (PLISRVIB)

    • your PL/I RPC client customer application

    Note the Hints for Compiling and Linking (Binding).

  7. Link (bind) all compiled modules together with the broker stub to an executable program, using the standard linker (binder) of the target platform. Use a broker stub supported for batch processing in your environment.

Using the Generic RPC Services Module

The generic RPC services module contains the call to the broker stub, as well as other functions needed for RPC communication where a client interface object is not needed, such as

Depending on your target environment the generic RPC services module is delivered in various sources:

  • For CICS, use the source PLISRVIC. This module is shared by all PL/I RPC client applications because it is installed only once within CICS.

  • For Batch and CICS with Call Interfaces use the source PLISRVIB.

The program and linkage name of the generic RPC service module

  • is PLISRVI by default

  • does not depend on the source module used (PLISRVIB or PLISRVIC)

  • can be customized, see PL/I Preprocessor Settings

The delivery of the generic RPC service module and other required modules depends on the platform you are using.

Hints for Compiling and Linking (Binding)

  • The delivered generic RPC include data set EXP109.INCL (this data set may be delivered as a patch with a different name EXP109.INnn, where nn is the patch level number, make sure you install the highest patch level available) is required to SYSLIB input for the PL/I compiler.

  • For a non-tracing version, the Trace Functions module delivered in the source PLISRVT in the generic RPC source data set EXP109.SRCE must not be compiled and linked to your application.

PL/I Preprocessor Settings

The PL/I Wrapper requires the PL/I preprocessor for all scenarios, that is, the templates generate source code including preprocessor statements. See your PL/I compiler documentation on how to switch on the PL/I preprocessor.

The preprocessor settings are customized in the file RPCPPS; see PL/I Wrapper Modules Delivered as Sources on z/OS. The following switches are available:

Preprocessor Switch Values Explanation
ERXTARGET BATCH | CICS

This is the most important switch. The setting must always be the same as the target option during generation, that is, when using the PL/I Wrapper

  • for Batch, it must be set to "BATCH"

  • for CICS, it must be set to "CICS"

  • for CICS with call interfaces, it must be set to "BATCH"

If the setting is not the same, it will not be possible to compile the PL/I Wrapper successfully.

ERXPREFIX A prefix composed of any three characters valid for PL/I names

With this switch you can customize a prefix of the program and linkage name of the

  • Specific RPC Functions module (xxxSRVS)

  • Generic RPC Services module (xxxSRVI)

  • Trace Functions module (xxxSRVT)

The default of the prefix is PLI, the resulting linkage names therefore are PLISRVS, PLISRVI and PLISRVT. In the scenario of CICS the prefix also customizes the CICS program name (xxxSRVI) for the Generic RPC Services module.

ERXTRACE YES
NO
With this switch you can build a trace version, See Using Trace. For a non-tracing version, if set to "NO", the Trace Functions module delivered in source RPCSRVT must not be compiled and linked to your application.

Using the PL/I Wrapper for the Server Side

The EntireX PL/I Wrapper provides access to RPC-based components from PL/I applications. It enables you to develop both client and server applications. This section introduces the various possibilities for RPC-based server applications written in PL/I.

Using the PL/I Wrapper for Batch Mode

This scenario applies to z/OS. See also PL/I Scenarios.

graphics/pliServerside_batch.png

(1) For the target platforms, see Generating PL/I Source Files from Software AG IDL Files

In batch mode the RPC server requires no server interface objects. All parameters of your server are set up dynamically in the format required. Your server is called dynamically using standard call interfaces.

Start of instruction setTo use the PL/I Wrapper for batch

  1. Generate the server (skeleton) for the target, for example "Batch for z/OS". See Generating PL/I Source Files from Software AG IDL Files.

  2. If necessary, use FTP to transfer the server (skeleton) to the target platform where you write your server.

  3. Use the generated server (skeleton) and complete it by applying your application logic. Note the information given in Software AG IDL to PL/I Mapping.

  4. If necessary, use FTP to transfer the server interface object and your server to the target platform where you compile your server.

  5. Compile it using a PL/I compiler supported by PL/I Wrapper on your server.

  6. Link (bind) the server to an executable program, using the standard linker (binder) of the target platform.

  7. Provide the server and the server interface object to the RPC Server for Batch.

Using the PL/I Wrapper for CICS

This mode applies to z/OS. See also PL/I Scenarios under Scenarios and Programmer Information in the RPC Server for CICS documentation.

graphics/pliServerside_cics.png

(1) For the target platforms, see Generating PL/I Source Files from Software AG IDL Files

In CICS the RPC Server requires no server interface objects. All parameters of your server are set up dynamically in the format required. Your server is called using EXEC CICS LINK.

Start of instruction setTo use the PL/I Wrapper for CICS

  1. Generate the server (skeleton) for the target, e.g. "CICS for z/OS". See Generating PL/I Source Files from Software AG IDL Files.

  2. If necessary, use FTP to transfer the server (skeleton) to the target platform where you write your server.

  3. Use the generated server (skeleton) and complete it by applying your application logic. Note the information given under Software AG IDL to PL/I Mapping and Returning Application Errors under Scenarios and Programmer Information in the RPC Server for CICS documentation.

  4. If necessary, use FTP to transfer the server interface object and your server to the target platform where you translate and compile your server.

  5. Translate and compile your server (including your application logic) using the CICS translator for PL/I provided with your CICS installation and a PL/I compiler supported by PL/I Wrapper.

  6. Link (bind) the server to an executable program, using the standard linker (binder) of the target platform.

  7. Install your server as a CICS program to provide it to the RPC Server for CICS.

Using the PL/I Wrapper for IMS BMP

This mode applies to z/OS IMS mode BMP. See also PL/I Scenarios in the RPC Server for IMS documentation.

graphics/pliWrapper_ims.png

(1) For the target platforms, see Generating PL/I Source Files from Software AG IDL Files

In IMS, the RPC Server works with server interface objects. The interface objects provide the IMS-specific PCB pointers to your server. Your server is called dynamically using standard call interfaces. See IMS-specific PCB Pointers in the RPC Server for IMS documentation.

PSB List

All IMS PCB pointers are listed in a so-called PSB list, an include file containing the PCB pointers as PL/I declarations.

Example

Assume a program uses two PSB definitions:

  • IOPCB for the terminal interactions to check whether all outstanding messages are displayed or not

  • DBPCB for all database interactions to read, add, delete or update segments in a given database.

Technically the PLI / DLI interface module PLITDLI is called with the selected function code and PCB parameters. On return the necessary status information can be checked to control the further processing within the application program.

This status information is provided as parameter on return of the PLITDLI call. For this purpose, the PCB areas have to be defined with a DECLARE statement and as parameters.

   DCL 01 IOPCB                          ,
         02 LTERM-NAME         CHAR (08) ,
         02 FILLER_IO1         CHAR (02) ,
         02 TPSTATUS           CHAR (02) ,
         02 FILLER_IO2         CHAR (20);
   DCL 01 DBPCB                          ,
         02 DBNAME             CHAR (08) ,
         02 SEG_LEVEL_NO       CHAR (02) ,
         02 DBSTATUS           CHAR (02) ,
         02 FILLER             CHAR (20);

DBREAD: PROC(IOPCB, DBPCB) OPTIONS(...)

Now IMS is able to pass ADDRESSES for the IOPCB and DBPCB on entry of the application program.

The PSB list would be:

10  IOPCB POINTER,
10  DBPCB POINTER;

In the application program itself the IMS parameter can only be identified by its name, thus it is necessary to provide a list of PCBs as an include file.

This include file is provided by the customer.

  • The PSB list must be named PSBLIST (otherwise generation will not be possible) and it must not be empty, it must contain at least 1 PCB pointer.

  • It is used by the IDL Extractor for PL/I to find the IMS-specific PCB pointers. In the IDL file, parameters originating from PCB pointers are marked with the attribute IMS.

  • It is completed in the generated server interface object with the following level-1 parameter name, to address the IMS-specific PCB pointers correctly:

    /* IMS parameter */
    DCL 1 IMS_PARAMETER,
    %INCLUDE PSBLIST;
  • Together with the level-1 parameter name the data declarations in the PSB list include file must form valid PL/I data declarations - otherwise compilation is not possible.

Start of instruction setTo use the PL/I Wrapper for IMS

  1. Generate the server (skeleton) and server interface objects for the target "IMS for z/OS". See Generating PL/I Source Files from Software AG IDL Files.

  2. If necessary, use FTP to transfer the server interface object and the server (skeleton) to the target platform where you write your server.

  3. Use the generated server (skeleton) and complete it by applying your application logic. You can use the IMS specific PCB pointers in your server as usual. Note the information under Software AG IDL to PL/I Mapping and Returning Application Errors in the RPC Server for IMS documentation.

  4. If necessary, use FTP to transfer the server interface object and your server to the target platform where you compile your server.

  5. Using a PL/I compiler supported by PL/I Wrapper, compile:

    • the generated server interface object(s) providing the PSB List (see above) as an include file

    • your server (including your application logic).

    See Hints for Compiling and Linking (Binding).

  6. Link (bind) the server to an executable program, using the standard linker (binder) of the target platform.

  7. Provide the server interface object(s) in the server interface object library with the parameter stublib to the RPC Server for IMS. See Configuring the RPC Server.

  8. Provide the server to the RPC Server for IMS.

Hints for Compiling and Linking (Binding)

For IMS

  • The delivered generic RPC include data set EXP109.INCL (this data set may be delivered as a patch with a different name EXP109.INnn, where nn is the patch level number; make sure you install the highest patch level available) is required to SYSLIB input for the PL/I compiler.

For all other platforms

  • No special considerations apply.

Generating PL/I Source Files from Software AG IDL Files

This section describes how to generate PL/I source files from Software AG IDL files. It covers the following topics:

Selecting an IDL File and Generating an RPC Client or RPC Server

From the context menu, choose Other > Generate PL/I RPC Client and > RPC Server to generate the PL/I source files.

graphics/using_generate_selectIdl.png

For the RPC client:

  • This creates the folders client and include in the Container folder, defined in the properties. These contain the client interface objects and the RPC client declarations.

  • In command-line mode, use the command -"pli:client". See Using the PL/I Wrapper in Command-line Mode.

For the RPC server:

  • This creates the folder server in the Container folder, defined in the properties. It contains the RPC server implementation skeletons.

  • Additionally, server interface objects may be generated depending on the platform, e.g. "IMS for z/OS" and features chosen in the folder serverstub in the Container folder, defined in the properties. It contains the server interface objects.

  • In command-line mode, use command -pli:server. See Using the PL/I Wrapper in Command-line Mode.

    Warning:
    Take care not to overwrite an existing server implementation with a server skeleton. We recommend you move your server implementation to a different folder.

For both RPC client and RPC server:

  • If you generate using the GUI and generated files exist from a previous generation, you are prompted to overwrite them.

  • If you generate using command-line mode, existing files are always overwritten.

Settings

Use the properties of the IDL file to set the container folder where the source file subfolders will be stored. The target platform setting is responsible for the file extension and the content of the generated files.

graphics/pliWrapper_wrapperProperties.png

Target Platform

Select Batch, TP Monitor and Operating System for which PL/I code is to be generated.

Target Description
Batch for z/OS Batch-dependent PL/I code will be generated. Interface objects and servers are called using standard call interface. Use this option if you want to build an RPC application as described under
  • Using the PL/I Wrapper for Batch Mode (client or server).

  • Using the PL/I Wrapper for CICS with Call Interfaces (client).

CICS for z/OS CICS-dependent PL/I code will be generated. The interface is mapped to DFHCOMMAREA. Interface objects and servers are called using EXEC CICS LINK. Use this option if you want to build an RPC application as described under
IMS for z/OS IMS-dependent PL/I code will be generated. Interface objects and servers are called using standard call interface, considering also IMS-specific PCB pointers (IDL parameters marked with the attribute IMS) for servers. See attribute-list under Software AG IDL Grammar in the IDL Editor documentation. Use this option if you want to build an RPC application for IMS as described under
  • Using the PL/I Wrapper for Batch Mode (client)

  • Using the PL/I Wrapper for IMS BMP (server)

The workspace default for the target platform is set in the preferences page of the PL/I Wrapper.

graphics/pliWrapper_wrapperPreferences.png

In command-line mode, use -target to set this option.