Quick Reference |
This document describes the client API data structures available for the C Wrapper and covers the following topics:
The following naming conventions are used to describe the EntireX RPC API data structures:
Naming Convention | Data Type |
---|---|
ulXXXXX |
unsigned long |
usXXXXX |
unsigned short |
uXXXXX |
unsigned ... (predefined types such as ptrdiff_t )
|
szXXXXX |
zero terminated string |
pXXXXX |
pointer to ... |
typedef struct tagERX_CLIENT_IDENTIFICATION { char szUserId [ ERX_MAX_USERID_LENGTH + 1 ]; char szPassword [ ERX_MAX_PASSWORD_LENGTH + 1 ]; char szToken [ ERX_MAX_TOKEN_LENGTH + 1 ]; char szSecurityToken [ ERX_MAX_securityToken_LENGTH + 1 ]; char szNewPassword [ ERX_MAX_PASSWORD_LENGTH + 1 ]; char szRpcUserId [ ERX_MAX_USERID_LENGTH + 1 ]; char szRpcPassword [ ERX_MAX_PASSWORD_LENGTH + 1 ]; char cForceLogon; unsigned char uEncryptionLevel; char *pSSLParameter; unsigned char uCompressionLevel; } ERX_CLIENT_IDENTIFICATION;
Field | Description |
---|---|
szUserId |
Mandatory. EntireX Broker user identification. Corresponds to
the USER-ID field of the ACI control block. Also used
by EntireX Security.
|
szPassword |
Used when EntireX Security is used. Corresponds to the
PASSWORD field of the ACI control block.
|
szNewPassword |
Used when EntireX Security is used. Corresponds to the
NEWPASSWORD field of the ACI control block.
|
szToken |
Optional. Token used by the EntireX Broker to identify the
caller. See TOKEN field of the ACI control
block.
|
szSecurityToken |
Security token generated by EntireX Security and EntireX
Broker after successful security validation. Do not overwrite or change it.
Corresponds to the SECURITY-TOKEN field of the ACI
control block.
|
szRpcUserId |
Optional. Additional user identification for EntireX/Natural
RPC server. Used by Natural Security, for example. If this field is empty,
szUserId is used.
|
szRpcPassword |
Optional. Additional password for EntireX/Natural RPC server.
Used by Natural Security, for example. If this field is empty,
szPassword is used.
|
cForceLogon |
Mandatory. Determines whether explicit logon or auto-logon is
used by the caller. Corresponds to the FORCE-LOGON
field of the ACI control block.
|
uEncryptionLevel |
Deprecated. For encrypted transport we strongly recommend using the Secure Sockets Layer/Transport Layer Security protocol. See SSL/TLS and Certificates with EntireX. |
*pSSLParameter |
Secure Sockets Layer Settings are provided here as a null-terminated string. See Running Broker with SSL/TLS Transport under z/OS | UNIX | Windows | z/VSE for more information. |
uCompressionLevel |
Optional. Corresponds to the
COMPRESSLEVEL field of the ACI control block.
|
typedef struct tagERX_SERVER_ADDRESS { ERXeMedium Medium; unsigned long ulTimeOut; union { ERX_SA_BROKER BROKER; ERX_SA_BROKER_LIBRARY BROKER_Library; ERX_SA_CONNECTION Connection; } Address; } ERX_SERVER_ADDRESS;
Field | Description |
---|---|
Medium |
Mandatory. Selects an RPC server. The following types are supported: ERX_TM_BROKER ( for backward compatibility) ERX_TM_BROKER_LIBRARY ERX_TM_CONNECTION This type of medium is used for the connection-oriented (conversational) RPC. After successful ERXConnect (that is, after opening the
conversation), the RPCs are invoked using ERX_TM_CONNECTION . Any open
conversation must be closed with ERXDisconnectCommit or aborted with
ERXDisconnect .
|
ulTimeOut |
Mandatory. Gives the timeout value for the transport system in seconds. Corresponds to the WAIT field of the ACI
control block. Note: |
Depending on the Medium field, the Address union holds the necessary information to address a server:
BROKER | |||
---|---|---|---|
szEtbidName |
Mandatory. Broker ID used. Corresponds to the BROKER-ID field of the ACI control block.
|
||
szClassName |
Mandatory. Class Name of the EntireX/Natural RPC server. Use RPC for Natural RPC Server. Corresponds to the SERVER-CLASS field of the ACI control block.
|
||
szServerName |
Mandatory. Server Name of the EntireX/Natural RPC server. Corresponds to the SERVER-NAME field of the ACI control block.
|
||
szServiceName |
Mandatory. Service Name of the EntireX/Natural RPC server. Use CALLNAT for
Natural RPC Server. Corresponds to the
SERVICE field of the ACI control block.
|
||
BROKER_LIBRARY | |||
szEtbidName |
Mandatory. Broker ID used. Corresponds to the BROKER-ID field of the ACI control block.
|
||
szClassName |
Mandatory. Class Name of the EntireX/Natural RPC server. Use RPC for Natural RPC Server. Corresponds to the SERVER-CLASS field of the ACI control block.
|
||
szServerName |
Mandatory. Server Name of the EntireX/Natural RPC server. Corresponds to the SERVER-NAME field of the ACI control block.
|
||
szServiceName |
Mandatory. Service Name of the EntireX/Natural RPC server. Use CALLNAT for
Natural RPC Server. Corresponds to the
SERVICE field of the ACI control block.
|
||
szLibraryName |
Mandatory. Library sent to the EntireX/Natural RPC server by the client. The library specified here overrides any library information
specified in the IDL file, see |
||
cCompression |
Mandatory. Switches on compression to transfer EntireX RPC Requests. Valid values:
|
||
cNaturalLogon |
|
||
Connection | |||
Contains internal information
for EntireX runtime.
|
typedef struct tagERX_CALL_IDENTIFICATION { char szLibraryName [ ERX_MAX_LIBRARY_NAME_LENGTH + 1 ]; char szProgramName [ ERX_MAX_PROGRAM_NAME_LENGTH + 1 ]; unsigned long ulVersion; } ERX_CALL_IDENTIFICATION;
Field | Description |
---|---|
szLibraryName |
The name of the library where the program to be called resides. The format depends on the environment. For a mainframe Natural server, for example, the name of the library must be uppercase. |
szProgramName |
The name of the program to be called. The format depends on the environment. For a mainframe Natural server, for example, the name of the program must be uppercase. |
ulVersion |
Reserved for future use, should be set to zero. |
typedef struct tagERX_PARAMETER_DEFINITION { char szParameterName [ ERX_MAX_PARAMETER_NAME_LENGTH + 1 ]; ERXeTypeCode usType; ERXeAttributes usAttributes; size_t uElementLength; ERX_OBJECT_SIZE uSize unsigned long uParent; unsigned long uOccurrence [ ERX_MAX_INDICES ]; ERX_POINTER_DIFFERENCE uBase; ERX_POINTER_DIFFERENCE uDelta [ ERX_MAX_INDICES ]; void *pCallInfoBlock; } ERX_PARAMETER_DEFINITION_V3;
Field | Description |
---|---|
szParameterName |
The name of the parameter. |
usType |
The data type including parameter type direction and index
count. See IDL Data Types. Bits: FEDCBA9876543210 UUUUUUTTTTTTDDNN
U: Unused |
usAttributes |
Attributes can be combined by OR when they are not exclusive,
such as ERX_ATTR_STRING and ERX_ATTR_MF_ALPHA . For a list of
Attributes see the following
table.
|
uElementLength |
Information on the logical length of the parameter. For
ERX_TYPE_A , for example, A10 in the IDL file has a uElementLength of 11 when
mapped to string with ERX_ATTR_STRING . It has a uElementLength of 10 when
mapped with ERX_ATTR_MF_ALPHA .
|
uSize |
The physical size of the parameter in bytes. |
uOccurrence |
The count of elements in each dimension in ascending order.
For unbounded arrays: when set presents a possible maximum. Unbounded arrays with value zero have no maximum. |
uBase |
The address of the base of the parameter. |
uDelta |
The difference for each dimension between following elements in ascending order. |
uCallInfoBlock |
Pointer to CallInfoBlock for structures ERX_TYPE_S .
|
Attribute | Description |
---|---|
ERX_ATTR_ARRAY_V1 |
First dimension of array is unbounded. Attribute evaluated by Software AG IDL Compiler. |
ERX_ATTR_ARRAY_V2 |
Second dimension of array is unbounded. Attribute evaluated by Software AG IDL Compiler. |
ERX_ATTR_ARRAY_V3 |
Third dimension of array is unbounded. Attribute evaluated by Software AG IDL Compiler. |
ERX_ATTR_ALIGNED |
The parameter is aligned on the server side. The attribute is evaluated by the Software AG IDL Compiler. Used by EntireX RPC server on CICS. |
ERX_ATTR_DOUBLE |
The parameter is mapped to C data type double. Valid for:
The mapping can be forced by a template by adding 32768 to the
|
ERX_ATTR_PACKED |
The parameter is mapped to C data type char[...] contained in
IBM mainframe packed format. Valid for:
Default mapping for P and PU data types; used when nothing is
added to the |
ERX_ATTR_UNPACKED |
The parameter is mapped to C data type char[...] contained in
IBM mainframe packed format. Valid for:
Default mapping for N and NU data types; used when nothing is
added to the |
ERX_ATTR_STRING |
The parameter is mapped to a null terminated string. Valid
for
|
ERX_ATTR_MF_ALPHA |
The parameter is mapped to C data type char[...] - but
without a NULL terminator. Valid for:
Default attribute for A data types; is used when nothing is added to the %TypeAttribute. |
ERX_ATTR_NOTHING |
Use when none of the mappings described above apply. |
typedef struct tagERX_CALL_INFORMATION_BLOCK { ERX_CALL_IDENTIFICATION Callee; unsigned short uParameterCount; ERX_PARAMETER_DEFINITION_V3 *pParmDef; } ERX_CALL_INFORMATION_BLOCK;
Field | Description |
---|---|
Callee |
The identification of the program to be called, see
ERX_CALL_IDENTIFICATION |
uParameterCount |
The total count of the parameters (the number of entries in the parameter definition array). |
pParmDef |
A pointer to the parameter definition array. See
ERX_PARAMETER_DEFINITION_V3 _V3
|
typedef struct tagERX_ERROR_INFO { ERXeReturnCode rc; char szMessage[ 256 ]; } ERX_ERROR_INFO;
Field | Description |
---|---|
rc |
The last return code returned. See Error Messages and Codes. |
szMessage |
Error message. Text associated with the last return code issued. |
typedef struct tagERX_IS_SERVING { char *pMessage; int uMessageLength; } ERX_IS_SERVING;
Field | Description |
---|---|
pMessage |
Pointer to the provided buffer for server's "alive" message. |
uMessageLength |
Length of the provided buffer. |
typedef enum { ERX_SHUTDOWN_IMMED_ALL = 1, ERX_SHUTDOWN_ANYONE = 2 } ERXeShutdownCommand; typedef struct tagERX_TERMINATE_SERVER { ERXeShutdownCommand eShutdownCommand; char *pMessage; int uMessageLength; } ERX_TERMINATE_SERVER;
Field | Description |
---|---|
eShutdownCommand |
The shutdown method to be used.
|
pMessage |
Pointer to the provided buffer for server's "completion" message. |
uMessageLength |
Length of the provided buffer. |
typedef struct tagERX_CONTEXT_BLOCK { ERXCallId ERXCallId; ERXeReturnCode ERXrc; ERX_ERROR_INFO ERXErrorInfo; ERX_SERVER_ADDRESS ERXServer; ERX_CLIENT_IDENTIFICATION ERXClient; } ERX_CONTEXT_BLOCK;
Field | Description |
---|---|
ERXCallId |
The CallId returned by a caller.
|
ERXrc |
EntireX RPC Error Code. See Error Messages and Codes. |
ERXErrorInfo |
EntireX RPC Error information, see
ERX_ERROR_INFORMATION .
|
ERXServer |
The server address, see
ERX_SERVER_ADDRESS .
|
ERXClient |
The client identification, see
ERX_CLIENT_IDENTIFICATION .
|
#define ERX_SVM_VERSION_1 (unsigned long) 1 typedef struct tagERX_SVM_V1 { unsigned long version; char *pProtocol; char *pSM; char *pFA; char *pVA; char * pSA; } ERX_SVM_V1;
Field | Description |
---|---|
version |
Version of this control block. Initialitze with
ERX_SVM_VERSION_1 .
|
pProtocol |
RPC protocol version from the related server mapping file (EntireX Workbench file with extension .cvm)
evaluated by the Software AG IDL Compiler and provided in the
output_substitution_sequence
%SVMRpcProtocol .
|
pSM |
Pointer to the meta data part of the related server mapping file evaluated
by the IDL Compiler and provided in the
output_substitution_sequence
%SVMMetaData .
|
pFA |
Pointer to the format area of the related server mapping file evaluated by
the IDL Compiler and provided in the
output_substitution_sequence
%SVMFormatArea .
|
pSA |
Pointer to the string area of the related server mapping file evaluated by
the IDL Compiler and provided in the
output_substitution_sequence
%SVMStringArea .
|