IiopSetMaxGiopVersion Function

Action

Sets the maximum General Inter-ORB Protocol version and is also used as the default value for any IIOP message.

Include File

IIOP.bdh

Syntax

IiopSetMaxGiopVersion( in sVersion : string ): boolean;

Return value

  • true if successful

  • false otherwise

Parameter Description
sVersion General Inter-ORB Protocol version

Example

dcltrans
  transaction TWebInit
  begin
    // set GIOP version
    if IiopSetMaxGiopVersion("1.2") then
      writeln("GIOP version set to 1.2");
    end;
  end TWebInit;

Output

GIOP version set to 1.0