Once the arguments are set, you execute the operation with ostc_Session::doOperation():
ostc_ObjectList * result = _session->doOperation(transfer);
transfer is the operation to be executed.
result is the a list of ostc_Objects that constitute the operation result. Each ostc_Object is made up of attribute/value pairs. The possible value types are the same as the possible argument types of an operation.
0 indicates that the operation should not use the thin client cache of operation results.
There are additional optional arguments that allow you to
See ostc_Session::doOperation() for more information.
Click here for the example in context.