Server mapping enables the RPC server to correctly support special COBOL syntax such as
REDEFINE
s, SIGN LEADING
and OCCURS DEPENDING ON
clauses,
LEVEL-88
fields, etc.
If one of these elements is used, the IDL Extractor for COBOL automatically extracts a
server mapping file in
addition to the IDL file (interface definition language).
Also, the COBOL Wrapper may generate a server mapping file for RPC server generation.
The server mapping is used at runtime to marshal and unmarshal the RPC data stream.
There are client-side mapping files (Designer files with extension .cvm) and server-side mapping files
(Designer files with extension .svm).
If you have not used server-side mapping, we recommend you use client-side mapping. See Server Mapping Files for COBOL in the Designer documentation.
This document covers the following topics:
Check if a Server-side Mapping File Revision has been Deployed
Ensure that Deployed Server-side Mapping Files are not Overwritten
Is There a Way to Smoothly Introduce Server-side Mapping Files?
See also Source Control of Server Mapping Files | Comparing Server Mapping Files | When is a Server Mapping File Required? | Migrating Server Mapping Files in the Designer documentation.
Under z/VSE, server-side mapping corresponds to lines of Designer files with extension .svm. See Server Mapping Files for COBOL. The mapping information is stored as records within one VSAM file, the server-side mapping container. This container contains all server-side mapping entries from all Designer files with extension .svm. The unique key of the VSAM file file consists of the first 255 bytes of the record: for the type (1 byte), for the IDL library (127 bytes) and for the IDL program (127 bytes).
If one server requires a server-side mapping file, you need to provide this to the RPC server:
Development environments: to deploy new server-side mapping files, see Deploying Server-side Mapping Files to the RPC Server.
Production environments: provide a server-side mapping container (VSAM file) containing all required server-side mapping files
to the RPC server.
See ERXMAIN
macro parameter SVM
.
If no server requires server-side mapping, you can execute the RPC server without server mapping files:
Development environments: you can disable the deployment service. See Disabling the Deployment Service.
Production environments: there is no need to provide a server-side mapping container (VSAM file) to the RPC server.
See ERXMAIN
macro parameter SVM
.
The following approaches are available to deploy a server-side mapping file (Designer file with extension .svm; see Server Mapping Files for COBOL):
Server Mapping Deployment Wizard
FTP and IDCAMS
To deploy a server-side mapping file with the Server Mapping Deployment Wizard
Make sure your RPC server is active and that the Deployment Service of the RPC server is properly configured. See Deployment Service.
From the context menu of your IDL file, choose Server Mapping Deployment Wizard in the Designer documentation.
and call the Server Mapping Deployment Wizard. SeeTo deploy a server-side mapping file using FTP and IDCAMS
Make sure the server-side mapping container (VSAM file) is installed.
See Step 1: Define a Server-side Mapping Container - VSAMDEF.J
(Optional) under Installing the z/VSE EntireX RPC Servers.
Allocate a target sequential file on your mainframe.
Allow write access to the VSAM file mentioned above and usage of IDCAMS tools.
Transfer the server-side mapping file to the target host, using FTP. You have to switch to text mode and the codepage of the FTP service must be the same as the codepage (locale string) of the RPC server used.
Install the server mapping contained in the server-side mapping file into the server-side mapping container (VSAM file) with an appropriate IDCAMS job.
Note:
If you omit the keyword REPLACE
or define NOREPLACE
in the SYSIN
data stream of IDCAMS instead, existing server mapping information is not overwritten.
This protects server-side mapping records from being overwritten by duplicates.
Use the Server Mapping Deployment Wizard to undeploy a server-side mapping file (Designer file with extension .svm). See Server Mapping Files for COBOL.
To undeploy a server-side mapping file with the Server Mapping Deployment Wizard
Make sure your RPC server is active and that the Deployment Service of the RPC server is properly configured. See Deployment Service.
Make sure your IDL file is within a Designer directory (folder) without the related server-side mapping file (.svm).
From the context menu of your IDL file, choose Server Mapping Deployment Wizard in the Designer documentation. Because there is no related server-side mapping file in the Designer, all server mapping information related to the IDL file in the RPC server will be removed.
and call the Server Mapping Deployment Wizard. SeeUnder z/VSE, change management for a VSAM file (server-side mapping container, see Server-side Mapping Files in the RPC Server) is similar to change management for a database. The complete VSAM file can be backed up at any time, for example by using IDCAMS. All updates to the VSAM file done after a backup must be kept.
All Designer server-side mapping files (.svm) added since the last backup should be available. See Server Mapping Files for COBOL in the Designer documentation.
Use IDCAMS to list the contents of the server-side mapping container. See Server-side Mapping Files in the RPC Server.
* $$ JOB JNM=VSAMPRNT,CLASS=0,DISP=D * $$ LST CLASS=A,DISP=K /* ------------------------------------------------------------ */ /* PRINT CONTENT OF AN SVM VSAM CLUSTER */ /* ------------------------------------------------------------ */ // JOB VSAMPRNT // DLBL ERXSVM,'ENTIREX.SVMDEV.KSDS',0,VSAM,CAT=VSESPUC // EXEC IDCAMS,SIZE=AUTO PRINT INFILE(ERXSVM) CHAR /* /& * $$ EOJ
Server-side mapping records in the server-side mapping container correspond to lines of Designer files with extension .svm. See Server Mapping Files for COBOL in the Designer documentation. The records contain a creation timestamp at offset 276 (decimal) in the format YYYYMMDDHHIISST. Precision is 1/10 of a second. The creation timestamp can be checked.
The timestamp can be found on the same offset in the records in the server-side mapping container (VSAM file). See Server-side Mapping Files in the RPC Server.
For deployment with the Server Mapping Deployment Wizard, use EntireX Security if the broker is running on platforms z/OS, UNIX, Windows or z/VSE. See Enabling the Deployment Service.
For IBM deployment tool IDCAMS
, use RACF to secure deployment.
For IDCAMS, use the NOREPLACE
option to disallow
overwriting of duplicate server-side mapping records in the server-side mapping container (VSAM file); see Server-side Mapping Files in the RPC Server.
See also Deploying Server-side Mapping Files to the RPC Server.
All EntireX RPC servers can be executed without server-side mapping files. See Server-side Mapping Files in the RPC Server. There is no need to install the server-side mapping container if the following conditions are met:
You do not use features that require server mapping; see When is a Server Mapping File Required?
Server-side type of COBOL mapping is switched on in the Designer. If you have not used server-side mapping, we recommend you use client-side mapping. See Server Mapping Files for COBOL.
You can also call COBOL servers generated or extracted with previous versions of EntireX mixed with a COBOL server that requires server-side mapping. All EntireX RPC servers are backward compatible.