![]() |
VOOZH | about |
The CData API Server produces secure feeds of MYOB AccountRight data that you can consume in PowerBuilder DataWindows. The API Server supports the major Web services, including OData, Atom, JSON, HTML, CSV, TSV, and RSS. It also supports the major authentication schemes and SSL.
This article shows how to create a DataWindow that uses the CData API Server to execute reads and writes.
Follow the steps below to begin producing secure MYOB AccountRight OData services:
The API Server runs on your own server. On Windows, you can deploy using the stand-alone server or IIS. On a Java servlet container, drop in the API Server WAR file. See the help documentation for more information and how-tos.
The API Server is also easy to deploy on Microsoft Azure, Amazon EC2, and Heroku.
After you deploy the API Server, provide authentication values and other connection properties needed to connect to MYOB AccountRight by clicking Settings -> Connections and adding a new connection in the API Server administration console.
These properties are required when connecting to a company file (both for Cloud and On-Premise instances).
To connect to a cloud instance of MYOB, you can use the embedded OAuth credentials or create an OAuth app with MYOB. This process is detailed in the Help documentation.
When connecting to an on-premise instance, set the following connection property in addition to those above:
You can then choose the MYOB AccountRight entities you want to allow the API Server access to by clicking Settings -> Resources.
Additionally, click Settings -> Server and change the following settings for compatibility with PowerBuilder:
After determining the OData services you want to produce, authorize users by clicking Settings -> Users. The API Server uses authtoken-based authentication and supports the major authentication schemes. Access can also be restricted based on IP address; by default, only connections to the local machine are allowed. You can authenticate as well as encrypt connections with SSL.
Follow the steps below to use the Database Painter tool to create a database profile for the OData API of the API Server. In the Database Painter, you can graphically manipulate data as well as execute SQL queries.
http://MyServer:8080/api.rsc
You can use standard PowerBuilder objects to connect to OData feeds and execute queries. The following example shows how to retrieve MYOB AccountRight data into a DataWindow.
You can add the following code to the open method:
SQLCA.DBMS = "ODT" SQLCA.DBParm = "ConnectString='URI=http://MyServer:8080/api.rsc;UID=MyAPIUser;PWD=MyAuthtoken'"; CONNECT USING SQLCA; dw_accounts.SetTransObject(SQLCA); dw_accounts.Retrieve();
Learn more or sign up for a free trial:
CData API Server