IiopSetBoolean Function

Action

Associates a boolean parameter with a CORBA object. This function can be used to set parameters of a request in advance of calling the IiopRequest function.

Include file

IIOP.bdh

Syntax

IiopSetBoolean( in hIiop : number,
                in bBool : boolean ): boolean;

Return value

  • true if successful

  • false otherwise

Parameter Description
hIiop Handle to a CORBA object
bBool Boolean value that will be associated with the CORBA object or with the Any data type

Example

dcltrans
  transaction TSetBoolean
  const
    HOST   := "192.168.20.21"; // server
    PORT   := 1052; // port
    KEY    := "...\h00"; // key
    KEYLEN := 4; // key length
  var
    hIiop: number; // handle to CORBA object
  begin
    IiopSetMaxGiopVersion("1.2");
    IiopSetByteOrder(IIOP_BIG_ENDIAN);

    // retrieve handle to server
    IiopObjectCreate(hIiop, "IDL:DemoObject:1.0", "1.2",
                     HOST, PORT, KEY, KEYLEN); 
    // pass boolean parameter to request
    IiopSetBoolean(hIiop, true);

    // call request "Init" with boolean parameter
    IiopRequest(hIiop, "Init", IIOP_ONEWAY);
    IiopObjectRelease(hIiop);
  end TSetBoolean;

Sample scripts

Conf.bdf

You can find the sample script(s) here: <Public documents>\Silk Performer <version>\Samples\Corba