Client interface methods for session-free AppObjects
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
A session-free AppObject provides the following methods:
- ProcName (...)
-
CreateAO_SubAppObject ( ) -
CreatePO_ProcObject (...)
Call a ProcName method on the AppObject to execute a corresponding non-persistent external procedure typically identified by ProcName:
|
Because no context is maintained for a session-free AppObject, calls to these methods require no object IDs to be sent in the SOAP request header.
Use this method to create a SubAppObject:
|
This method must be executed before calling any other methods on the SubAppObject. The SOAP
response header returned by this method contains a SubAppObjectID element whose value must be sent in the SOAP
request header for all methods invoked on this SubAppObject. Because no context is
maintained for a session-free AppObject, calls to this method require no object ID to be
sent in the SOAP request header.
Use this method to create a ProcObject and execute the corresponding persistent procedure:
|
This method must be executed before calling any other methods on the ProcObject. The SOAP
response header returned by this method contains a ProcObjectID element whose value must be sent in the SOAP
request header for all methods invoked on this ProcObject. Because no context is maintained
for a session-free AppObject, calls to this method requires no object ID to be sent in the
SOAP request header.