This document covers the following topics:
The RPC communication area is used to specify parameters that are needed to communicate with the broker and are not specific to client interface objects. These are, for example, the Broker ID, client parameters such as user ID, password and the server address such as class/servername/service etc. See the table below for a complete listing.
Notes:
ERXCOMM
in the folder include for RPC client generation.
See Generating COBOL Source Files from Software AG IDL Files.
RPC Communication Area Field | Explanation | Req/ Opt/ Auto |
In/ Out |
Notes | ||||||
---|---|---|---|---|---|---|---|---|---|---|
ERXCOMM-HEADER |
Label. | - | - | - | ||||||
COMM-REQUEST |
Label. | - | - | - | ||||||
COMM-VERSION |
Version of RPC communication area. Possible values: 2000. | R | I | - | ||||||
COMM-FUNCTION |
LO - log on to the Broker
|
O | I | 1 | ||||||
LF - log off from the Broker
|
1 | |||||||||
OC - open conversation
|
3 | |||||||||
CE - close conversation with commit
|
3 | |||||||||
CB - close conversation with backout
|
3 | |||||||||
CT - create Natural Security token
|
4 | |||||||||
RC - do reliable RPC commit
|
6 | |||||||||
RR - do reliable RPC rollback
|
6 | |||||||||
RS - get reliable status
|
6 | |||||||||
EC - end of conversation
|
6 | |||||||||
COMM-RETURN-CODE |
Message class and message code returned by COBOL Wrapper. | - | O | - | ||||||
COMM-MESSAGE-TEXT-EX |
Message text provided by COBOL Wrapper (long versions). | - | O | - | ||||||
COMM-MESSAGE-TEXT |
Message text provided by COBOL Wrapper (short versions). | - | O | - | ||||||
ERXCOMM-AREA1 |
Label. | - | - | - | ||||||
COMM-USERID |
Label. | - | - | - | ||||||
COMM-USERID1 |
User ID (8 characters) created into security token. | O | I | 4 | ||||||
COMM-USERID2 |
User ID extension. | O | I | - | ||||||
COMM-PASSWORD |
Password (8 characters) created into security token. | O | I | 4 | ||||||
COMM-LIBRARY |
Library name (8 characters) created into security token. | O | I | 4,5 | ||||||
COMM-SECURITY-TOKEN-LENGTH |
Length of Natural Security token. | - | O | 4 | ||||||
COMM-SECURITY-TOKEN |
Natural Security token. | - | O | - | ||||||
COMM-IN-CONVERSATION |
Control variable used internally by generic RPC
services and client interface objects. If set to Y, RPC requests will use
COMM-ETB-CONV-ID for conversationality.
|
A | I/O | 3,7 | ||||||
COMM-IN-ACTIVE-UOW |
Control variable used internally by generic RPC
services and client interface objects for reliable RPC. If set to Y, RPC
requests will use COMM-ETB-UOW-ID for reliability.
|
A | I/O | 6,7 | ||||||
COMM-RELIABLE-STATE |
Control variable used by the application to
determine whether standard RPC requests or reliable RPC messages are used.
Valid values:
|
R | I/O | 6 | ||||||
COMM-RELIABLE-STATUS |
Result of a "get reliable status"
call to generic RPC services, see field COMM-FUNCTION above. Values correspond
to broker ACI field UOWSTATUS .
|
O | 6 | |||||||
COMM-ETB-BROKER-ID |
Corresponds to Broker ACI field BROKER-ID .
|
R | I | - | ||||||
COMM-ETB-SERVER-CLASS |
Corresponds to Broker ACI field SERVER-CLASS .
|
R | I | - | ||||||
COMM-ETB-SERVER-NAME |
Corresponds to Broker ACI field SERVER-NAME .
|
R | I | - | ||||||
COMM-ETB-SERVICE-NAME |
Corresponds to Broker ACI field SERVICE .
|
R | I | - | ||||||
COMM-ETB-USER-ID |
Corresponds to Broker ACI field USER-ID .
|
O | I | 1,2 | ||||||
COMM-ETB-PASSWORD |
Corresponds to Broker ACI field PASSWORD .
|
O | I | 1,2 | ||||||
COMM-ETB-TOKEN |
Corresponds to Broker ACI field TOKEN .
|
O | I/O | - | ||||||
COMM-ETB-SECURITY-TOKEN |
Internal field. Corresponds to Broker ACI field SECURITY-TOKEN .
|
A | I/O | 7 | ||||||
COMM-ETB-CONV-ID |
Internal field. Corresponds to Broker ACI field CONV-ID .
|
A | I/O | 3,7 | ||||||
COMM-ETB-WAIT |
Corresponds to Broker ACI field WAIT . Default: 60 seconds.
|
O | I | - | ||||||
COMM-ETB-APIVERS |
Corresponds to Broker ACI field API-VERSION .
Default=4.
|
O | I | - | ||||||
COMM-ETB-UOW-ID |
Corresponds to Broker ACI field UOWID .
|
O | I/O | 6 | ||||||
COMM-ETB-STORE |
Corresponds to Broker ACI field STORE .
|
O | I/O | 6 | ||||||
COMM-ETB-PROGRAM-OFFSET |
Fields are used internally for accounting purposes. See Accounting in EntireX Broker under z/OS | UNIX | Windows | z/VSE. | A | I/O | 7 | ||||||
COMM-ETB-LIBRARY-OFFSET |
A | I/O | 7 | |||||||
APPMON-SUPPORT |
Fields are used internally to support Application Monitoring | A | I/O | 7 | ||||||
APPMON-VERIFY |
A | I/O | 7 | |||||||
APPMON-TIMEVALUE |
A | I/O | 7 | |||||||
APPMON-TRANSPORT-BUFFER |
A | I/O | 7 | |||||||
APPMON-LEN-TRANSPORT-BUFFER |
A | I/O | 7 | |||||||
APPMON-RECEIVE-BUFFER |
A | I/O | 7 | |||||||
APPMON-LEN-RECEIVE-BUFFER |
A | I/O | 7 | |||||||
APPMON-LEN-DATA |
A | I/O | 7 | |||||||
APPMON-RETURN-CODE |
A | I/O | 7 |
- RPC Communication Area field
Name of the filed in the RPC communication area.
- Explanation
Explanation of the purpose of the field.
- Req/Opt/Auto
Indicates for input fields whether they have to be given by the RPC application (required) or may be given by the user (optional). Fields marked with "Auto" are managed internally by the Generic RPC Services Modules themselves.
- In/Out
Indicates whether the field is an input field (to be given by the RPC application) or an output field (returned to your RPC application).
Notes:
This section covers the following topics:
The generic RPC services module COBSRVI
is required for RPC
clients.
It can be optionally generated during RPC client generation in the
folder client in the container
folder. Section
Generate Generic RPC Service for Module COBSRVI under
Generating COBOL Source Files from Software AG IDL Files explains how to generate the RPC
service module COBSRVI
.
It contains functions needed for RPC communication where a client
interface object(s) is not needed. Refer to the functions documented with the
RPC communication area field COMM-FUNCTION
under
The RPC Communication Area (Reference) for a list of provided functions.
It manages internal states held inside the RPC communication area for conversational RPC, reliable RPC etc. See The RPC Communication Area (Reference).
From a COBOL programmer's point of view, it is always called with
the COBOL program name COBSRVI
, even for the
delivered mainframe sources COBSRVIB
, COBSRVIC
and COBSRVID
.
It contains the call to the broker stub.
The delivered modules on mainframe platforms are mainly for a quick demonstration of the delivered examples. The best approach is to use the modules generated by the EntireX Workbench, for the following reasons:
The modules delivered on mainframe platforms may be out-of-date.
You can set generation options, for example String Literal (see Characters Used for String Literals), individually as required.
Environment | Scenarios | Source to be Used | Description | Installation Linkage Usage |
---|---|---|---|---|
z/OS and z/VSE | Batch. See Using the COBOL Wrapper for Batch (z/OS, BS2000/OSD, z/VSE and IBM i). | COBSRVIB |
This module has a call interface to your COBOL RPC client application. | Linked to your client application or can be called dynamically. |
CICS with DFHCOMMAREA calling convention.
See Using the COBOL Wrapper for CICS with DFHCOMMAREA Calling Convention (z/OS and z/VSE).
|
COBSRVIC |
This module has an EXEC CICS LINK interface to your COBOL RPC
client application.
|
Installed only once within CICS as a CICS program and shared by all COBOL RPC client applications. | |
CICS with call interfaces. See Using the COBOL Wrapper for CICS with Call Interfaces (z/OS and z/VSE). | COBSRVID |
This module has a call interface to your COBOL RPC client application. | Linked to your client application or can be called dynamically. | |
z/OS IMS | IMS. See Using the COBOL Wrapper for IMS (z/OS). | COBSRVIB |
This module has a call interface to your COBOL RPC client application. | Linked to your client application or can be called dynamically. |
z/OS IDMS/DC | IDMS/DC with call interfaces. See Using the COBOL Wrapper for IDMS/DC with Call Interfaces (z/OS). | Not delivered. | This module has a call interface to your COBOL RPC client application. Generate it with the EntireX Workbench. | Linked to your client application or can be called dynamically. |
BS2000/OSD | Batch. See Using the COBOL Wrapper for Batch (z/OS, BS2000/OSD, z/VSE and IBM i). | COBSRVI |
This module has a call interface to your COBOL RPC client application. | Linked to your client application or can be called dynamically. |
IBM i | Batch. See Using the COBOL Wrapper for Batch (z/OS, BS2000/OSD, z/VSE and IBM i). | RPCSRVI |
This module has a call interface to your COBOL RPC client
application. Do not use this module; it is out of date. Generate it as COBSRVI
with the EntireX Workbench.
|
Linked to your client application or can be called dynamically. |
Module | Data Set | Description | Notes |
---|---|---|---|
COBSRVIB |
EXP990.SRCE | Batch generic RPC services with call interface. | 2 |
COBSRVIC |
EXP990.SRCE | CICS generic RPC services with EXEC CICS LINK
interface.
|
2 |
COBSRVID |
EXP990.SRCE | CICS generic RPC services with call interface. | 2 |
COBIGYIC |
EXP990.SRCE | JCL to compile the CICS generic RPC services module COBSRVIC with EXEC CICS LINK interface.
|
2 |
ERXCOMM |
EXP990.INCL | RPC communication area. | 1 |
ERXRCSRV |
EXP990.SRCE | C main module for application errors. | 3 |
ERXRCSRV |
EXP990.LD00 | Ready-to-use ERXRCSRV module for application errors.
|
3 |
EXPCOBCL |
EXP990.JOBS | JCL to compile the CICS generic RPC service
module COBSRVIC with EXEC CICS LINK interface.
|
2 |
- Module
Name of the delivered module.
- vrs
Version, release and service pack.
- EXP990.INCL
Generic RPC include data set. The generic RPC include data set may be delivered as a patch with a different name EXP990.INnn, where nn is the patch level number. Make sure you install the highest patch level available. The data set is required to
SYSLIB
input for the COBOL compiler.- EXP990.SRCE
Generic RPC source data set. The generic RPC source data set may be delivered as a patch with a different name EXP990.S0nn, where nn is the patch level number. Make sure you install the highest patch level available. The data set is required to
SYSLIB
input for the COBOL compiler.
Notes:
File | Sublibrary | Description | Notes |
---|---|---|---|
ERXCOMM |
EXP990 | RPC Communication area. | 1 |
COBSRVIB.C |
EXP990 | Batch generic RPC services with call interface (source). | 2, 3 |
COBSRVIB.OBJ |
EXP990 | Batch generic RPC services with call interface (object). | 2, 3 |
COBSRVIC.C |
EXP990 | CICS generic RPC services with EXEC CICS LINK interface
(source).
|
2, 3 |
COBSRVIC.OBJ |
EXP990 | CICS generic RPC services with EXEC CICS LINK interface
(object).
|
2, 3 |
COBSRVID.C |
EXP990 | CICS generic RPC services with call interface (source). | 2, 3 |
COBSRVID.OBJ |
EXP990 | CICS generic RPC services with call interface (object). | 2, 3 |
- File
Name of the delivered file.
- Sublibrary
Name of the delivered sublibrary.
- Description
Purpose of the file.
Notes:
COBSRVI
generated by the
EntireX Workbench instead of the modules COBSRVIB
, COBSRVIC
and
COBSRVID
delivered with your z/VSE installation. The reason for this is that
the EntireX Workbench is updated much more frequently. Section
Generate Generic RPC Service for Module COBSRVI under
Generating COBOL Source Files from Software AG IDL Files explains how to generate the RPC
service module.
Module | Data Set | Description | Notes |
---|---|---|---|
ERXCOMM |
EXP811.COBC | RPC communication area. | 1 |
COBSRVI.COB |
EXP811.COBC | Batch generic RPC services with call interface. | 2, 3 |
Notes:
COBSRVI
generated by the
EntireX Workbench instead of the delivered module. The reason for this is
that the EntireX Workbench is updated much more frequently. Section
Generate Generic RPC Service for Module COBSRVI under
Generating COBOL Source Files from Software AG IDL Files explains how to generate the RPC
service module.
Module | Source file | Description | Notes |
---|---|---|---|
ERXCOMM |
QCBLLESRC |
RPC communication area. | 1 |
RPCSRVI |
QCBLLESRC |
Batch generic RPC services with call interface. | 2, 3 |
Notes:
Because multiple broker stubs may be offered per operating system and
environments, it may be necessary to adapt the COBSRVI module to the correct
broker stub that supports the required transport (TCP, SSL, NET). To do this,
modify the COBOL subprogram DOBROKER
inside the COBSRVI
source file with a
broker stub that meets your requirements.
For availability and information on broker stubs, see Administration of Broker Stubs under z/OS | UNIX | Windows | BS2000/OSD | IBM i.
Caution:
Do not make any modifications other than changing the broker
stub name, and do not modify the COBOL subprogram COBSRVI
inside the same
COBSRVI program source. Unexpected behavior will occur.