Version 9.6
 —  IMS Connect RPC Server  —

Handling SVM Files

A server mapping file (SVM) enables the RPC server to correctly support special COBOL syntax such as REDEFINEs, JUSTIFIED, SYNCHRONIZE and OCCURS DEPENDING ON clauses, LEVEL-88 fields, etc. If one of these elements is used, the EntireX Workbench automatically extracts an SVM file in addition to the IDL (interface definition language), or an SVM file is generated by the COBOL Wrapper for a server skeleton. The SVM file is used at runtime to marshal and unmarshal the RPC data stream.

This document covers the following topics:


SVM Files in the EntireX Workbench

In the EntireX Workbench, an SVM file has to relate to an appropriate IDL file. Therefore, you always have to keep the IDL file and the SVM file together in the same folder.

If there is an SVM file and a corresponding IDL file,

If there is an IDL file but no corresponding SVM file,

Top of page

SVM Files in the RPC Server

IMS Connect RPC Server

For an IMS Connect RPC Server, copy the SVM files of the Workbench manually to a directory (folder) as operating system files. This directory (folder) is provided to the IMS Connect RPC Server with the property ims.mapping.folder. See Configuring the IMS Connect Side.

If no server requires an SVM file, you can omit the property ims.mapping.folder.

If one server requires an SVM file, provide the property ims.mapping.folder.

See also Deploying a Server Mapping File in the COBOL Wrapper documentation.

webMethods EntireX Adapter

For webMethods EntireX Adapter for Integration Server, do not change the location of the generated SVM file. It has to be kept in the same folder as the IDL file and will be picked up automatically together with the IDL file when an adapter connection for IMS Connect is generated. For more information, see the EntireX Adapter documentation under webMethods > Mainframe Integration on the Software AG Product Documentation website.

Top of page

Source Control of SVM Files

Because SVM entries within an SVM file contain text data only, a Workbench SVM file is text-based (although it is not intended for human consumption). Therefore, you can include it in your source control management together with the IDL file and the COBOL source(s) as a triplet that should always be kept in sync.

Top of page

Change Management of SVM Files

For a IMS Connect RPC Server, change management of the SVM directory (see SVM Files in the RPC Server) is similar to change management within ordinary operating system directories (folders). All updates to the SVM directory done after a backup must be kept.

All Workbench SVM files added since the last backup should be available.

Top of page

Compare SVM Files

For SVM files in the EntireX Workbench format, you can use a third party file/text compare tool to check if two files are identical.

The SVM entries (corresponding to lines in a Workbench SVM file) contain a creation timestamp at offset 276 (decimal) in the format YYYYMMDDHHIISST. The precision is 1/10 of a second.

Top of page

List Deployed SVM Files

To list the contents of an SVM directory (see SVM Files in the RPC Server), use the Windows Explorer (for Windows) or the ls command (for UNIX).

Top of page

Check if an SVM File Revision has been Deployed

SVM entries (corresponding to lines in Workbench SVM files) 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 SVM files stored as operating system files in SVM directories.

Top of page

When is an SVM File Required?

For the IDL Extractor for COBOL

Interface Type COBOL Syntax COBOL Mapping Editor SVM
Required
More Information
CICS with DFHCOMMAREA Calling Convention and IN different to OUT all   yes CICS with DFHCOMMAREA Calling Convention under Introduction to the IDL Extractor for COBOL | CICS DFHCOMMAREA under COBOL Parameter Selection
CICS Channel Container Calling Convention all   yes CICS with Channel Container Calling Convention
CICS with DFHCOMMAREA Large Buffer Interface all   yes CICS with DFHCOMMAREA Large Buffer Interface
IMS MPP Message Interface (IMS Connect) all   yes IMS MPP Message Interface (IMS Connect)
IMS BMP with Standard Linkage Calling Convention all   yes IMS BMP with Standard Linkage Calling Convention
Micro Focus with Standard Linkage Calling Convention BINARY clause   yes Micro Focus with Standard Linkage Calling Convention
all OCCURS DEPENDING ON clause   yes Tables with Variable Size - DEPENDING ON Clause under COBOL to IDL Mapping in the IDL Extractor for COBOL documentation
all REDEFINES clause   yes REDEFINE Clause
all TRAILING [SEPARATE] clause   yes SIGN LEADING and TRAILING SEPARATE Clause
all LEADING [SEPARATE] clause   yes SIGN LEADING and TRAILING SEPARATE Clause
all ALIGNED RIGHT attribute   yes  
all all Rename of program yes The Software AG IDL Tree Pane under Mapping Editor User Interface in the IDL Extractor for COBOL documentation
all all Map to operation yes Context Menu under The COBOL Parameters Pane
all all Map to constant yes Context Menu
all all Suppress yes Context Menu
other combinations no  

For the COBOL Wrapper

This depends on the interface type chosen and the IDL type:

Interface Type IDL Type COBOL Wrapper SVM
Required
More Information
CICS with DFHCOMMAREA Large Buffer Interface all   yes CICS with DFHCOMMAREA Large Buffer Interface under COBOL Server Interface Types
CICS with Channel Container Calling Convention all   yes CICS with Channel Container Calling Convention
IMS BMP with Standard Linkage Calling Convention all   yes IMS BMP with Standard Linkage Calling Convention
Micro Focus I2 or I4   yes Micro Focus with Standard Linkage Calling Convention | IDL Data Types
all IDL unbounded array   yes array-definition under Software AG IDL Grammar in the IDL Editor documentation
all IDL unbounded group   yes group-parameter-definition under Software AG IDL Grammar
all all IDL program name is not a valid COBOL name and is therefore adapted, or the COBOL program name is customized yes Customize Automatically Generated Server Names
other combinations   no  

Top of page

Is There a Way to Smoothly Introduce SVM Files?

All EntireX RPC servers can be executed without SVM files. There is no need to install the SVM container (see SVM Files in the RPC Server) as long as you do not use features that require SVM files (see When is an SVM File Required?). You can also call COBOL servers generated or extracted with previous versions of EntireX mixed with a COBOL server that requires SVM files. All EntireX RPC servers are backward compatible.

Top of page