Try OpenEdge Now
skip to main content
Web Services
Creating OpenEdge SOAP Web Services : Building Clients for OpenEdge SOAP Web services : Overview of calling methods on Web service objects : Client interface methods for SubAppObjects and ProcObjects : ProcObject methods
 
ProcObject methods
A ProcObject provides the following methods:
*Release_ ProcObject ( )
*ProcName (...)
*FuncName (...)
Use this method to terminate and remove the context of the persistent procedure that is managed by the ProcObject:
Release_ProcObject ( )
Once this method is executed, no other methods on the ProcObject can be called. The SOAP request header must contain the value of the ProcObjectID element. If other objects (AppObject or SubAppObjects) are sharing the same connection, the connection does not terminate until you call the release method for all the objects sharing the connection.
Call a ProcName method on the ProcObject to execute a corresponding internal procedure in the persistent procedure that is managed by the ProcObject:
ProcName (...)
The SOAP request header must contain the value of the ProcObjectID element.
Call a FuncName method on the ProcObject to execute a corresponding user-defined function in the persistent procedure that is managed by the ProcObject:
FuncName (...)
The SOAP request header must contain the value of the ProcObjectID element.