Version 6.3.12 for OpenVMS
 —  Tools and Utilities  —

Generating Multiple Interface Objects

You can generate single or multiple interface objects in either online or batch mode by using the function the command SYSRPC SGMASS.

You generate interface object from subprograms.

This section contains information on:


Using the SYSRPC SGMASS Command

You can enter the command SYSRPC SGMASS at any NEXT or MORE command prompt for generating interface objects online.

The section below contains information on:

Syntax of SYSRPC SGMASS

The syntax that applies to SYSRPC SGMASS is illustrated in the diagram below:

SYSRPC SGMASS [name] [compression]

The syntactical items name and compression are explained in the section Name Specification and Compression.

SYSRPC SGMASS Report

The command SYSRPC SGMASS produces a report that lists the interface objects generated with the command as shown in the following example:

Page       1                                               2006-05-24 16:09:17
                                                                              
    SYSRPC - Interface Object Generation in Library SAGTEST                               
                                                                              
                                                                              
Generation Criteria:                                                          
                                                                              
    Object name or range: RPC*                                               
             Compression: 1                                                   
                                                                              
                                                                              
Generation Results:                                                           
                                                                              
 Number of objects found:       8                                             
     Maximum send length:  200228                                             
  Maximum receive length: 1024192                                             
                                                                              
                                                                              
Object     Type      Send Length   Receive Length   Message                   
--------   ----   --------------   --------------   --------------            
RPCCALL1   N                 209              202                             
RPCCALL2   N                 219              240   Compression=2  
RPCCALL3   N                 204              193
MORE

The report is organized in three sections, which contain the following information:

If the MORE prompt appears, choose ENTER to scroll to the end of the report.

If the interface object generation fails for single or multiple objects, the report shows the number of objects affected and appropriate error messages.

Top of page

Name Specification and Compression

You can specify the objects (subprograms) to be selected for interface object generation and the type of compression to be used:

Name

You can specify an object name or a range of names. The specification of an object name or a range of names is optional.

Warning:
If you do not specify an object name or a range of names, with few exceptions (see below), all subprograms in the current library will be converted to interface objects.

Valid name specifications are described below where value is any combination of one or more alphanumeric characters:

Input Objects Selected
*

All subprograms.

This is the default setting.

value A subprogram with a name equal to value.
value*

All subprograms with names that start with value.

value< All subprograms with names less than or equal to value.
value> All subprograms with names greater than or equal to value.

Exceptions to Names

In the Natural system library SYSRPC, SYSRPC SGMASS exempts from interface object generation all subprograms with names that start with any of the following prefixes: RDS, RPC, NAT, NAD or NSC.

In user libraries, SYSRPC SGMASS exempts from interface object generation the subprogram NATCLTGS.

Compression

You can specify any of the following compression types: 0, 1, 2. The specification of compression is optional. The default type used for interface object generation is 1.

See also Using Compression described in Operating a Natural RPC Environment in the Natural Remote Procedure Call (RPC) documentation.

Top of page