Steps for accessing PAS for OpenEdge resources
- Last Updated: January 27, 2016
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
To allow your client application to access and use a PAS for OpenEdge instance:
-
Create a server object handle.
-
Use the
CONNECT( )method on the server object handle to connect the instance. -
Invoke remote procedure requests using the
RUNstatement and remote user-defined function requests, as provided by the business application. Delete any proxy procedure object handles to remote persistent procedures as they are no longer needed. -
When all remote requests to the PAS for OpenEdge instance have completed, use the
DISCONNECT( )method on the server object handle to disconnect the client application from the instance. -
Delete the server object handle.
The remainder of this chapter provides more information and code examples for each step in this process.