IiopRegisterValueType Function

Action

Registers a value typecode in order to be able to parse IIOP reply messages that contain non-chunked derived value types.

Include file

Iiop.bdh

Syntax

IiopRegisterValueType( in sValueTc : string,
                       in nTcLen   : number optional ): boolean;

Return value

  • true if successful

  • false otherwise

Parameter Description
sValueTc Value typecode that is to be registered.
nTcLen Length of the value typecode (optional).

Example

dcltrans
  transaction TInit
  const
    csTypecode := "\h0000001D000000C20000000000000038524D49"
      "\h3A6A6176612E6C616E672E496E74656765723A363444343743"
      "\h314430313938304235453A3132453241304134463738313837"
      "\h380000000008496E746567657200000000000000001D000000"
      "\h33580000000000000036524D493A6A6176612E6C616E672E4E"
      "\h756D6265723A3731444138424537463937313132383A383641"
      "\h43393531443042393445303842000000000000074E756D6265"
      "\h72000000020000000000000000000000h00000100000001000"
      "\h000000000003000000";
  begin
    IiopRegisterValueType(csTypecode);
  end TInit;