Data Structures
interface_id The interface identifier of an RPC interface. The interface identifier takes the following form:
interface-uuid major-version.minor-version
The version numbers are optional, but if you omit a version number, the value defaults to 0. The UUID is a hexadecimal string and the version numbers are decimal strings, for example:
-interface {ec1eeb60-5943-11c9-a309-08002b102989 3.11}
Leading zeros in version numbers are ignored.
Alternatively, you can use dcecp string syntax in the following form:
{interface-uuid major-version.minor-version}
For example:
-interface {458ffcbe-98c1-11cd-bd93-0000c08adf56 1.0}
object_uuid The UUID of an object. The UUID is a hexadecimal string, for example:
-object 3c6b8f60-5945-11c9-a236-08002b102989
Alternatively, you can use dcecp string syntax. For example:
-object {3c6b8f60-5945-11c9-a236-08002b102989}
host_address An RPC string binding that describes a host's location. The binding information contains an RPC protocol and the host's network address. Any specific host's
network address can be obtained by using the getip command.
annotation An informational text string that helps you identify the purpose of the endpoint. Use single or double quotation marks around the annotation field of endpoints to
include internal spaces in an annotation, for example:
-annotation "Bulletin Board Server, Version 1.3a"
Alternatively, you can use dcecp string syntax. For example:
-annotation {Bulletin Board Server, Version 1.3a}
version Interface version numbers to be returned with the rpcprofile show operation. Specify versions using one of the following values for the -version
option:
Versions |
Action |
all |
The interface version is ignored. |
exact |
Both the major and minor versions must match the specified versions. |
compatible |
The major version must match the specified version, and the minor version must be greater than or equal to the specified version. |
major_only |
The major version must match the specified version; the minor version is ignored. |
upto |
The major version must be less than or equal to that specified. If the major versions are equal, the minor version must be less than or equal to that specified. |
If the -version option is absent, the command returns compatible version numbers.
|