Try OpenEdge Now
skip to main content
Java Open Clients
Using the Open Client Java OpenAPI to Directly Access the AppServer
 

Using the Open Client Java OpenAPI to Directly Access the AppServer

The Open Client Java OpenAPI is a generic set of Java classes that can be used instead of the generated Java proxies produced by ProxyGen. Without proxies, you must do all of the setup work in your client code to an access application service on the AppServer. You must know the procedure names, including relative path information (for the equivalent ABL RUN statement), the number of parameters along with their type, and the return type for user-defined functions. When using the OpenAPI, there is no compile time checking so all function prototype error checking is done at runtime.
* Overview of Java OpenAPI classes
* Connecting to the AppServer
* Running procedures and user-defined functions
* Setting up parameters
* Passing parameters
* Handling returned values
* Sample Java OpenAPI code