com.WebOperation.CreateRPCStyle

Creates a new Web Operation object with RPC style.

Syntax

com.WebOperation.CreateRPCStyle(
   function STRING,
   operation STRING,
   inputVar RECORD ,
   outputVar RECORD )
  RETURNS com.WebOperation
  1. function defines the program function to be called to process the XML operation.
  2. operation defines the XML operation.
  3. inputVar defines the variable defining the input parameters of the operation (or NULL if there is none).
  4. outputVar defines the variable defining the output parameters of the operation (or NULL if there is none).

Usage

This method creates a Request-Response RPC style com.WebOperation object, where function is the name of the program function that is executed to process the XML operation.

The function name must be a string literal, not a string variable, due to operation publication restrictions.

In case of error, the method throws an exception and sets the STATUS variable. Depending on the error, a human-readable description of the problem is available in the SQLCA.SQLERRM register. See Error handling in GWS calls (STATUS).