Ready to get started?

Learn more or sign up for a free trial:

CData Connect Server

Creating XML-Connected Applications in Unqork



You can use CData Connect to feed XML data to Unqork and build custom business apps.

Overview

You can use CData Connect to feed XML data to Unqork. From there you can build custom business applications in a visual, drag-and-drop interface. So, how does this process work?

Unqork is a completely visual, no-code application development platform that helps large enterprises build complex custom software. CData Connect exposes XML as a REST endpoint, which you can then query from Unqork with simple HTTP requests. This enables you to create your own custom application with XML data.

What You'll Learn

In this article, you'll learn how to:

  • Add a CData Connect user
  • Connect to XML from CData Connect
  • Add XML OData endpoints in CData Connect
  • Configure CORS (Cross-Origin Resource Sharing)
  • Register XML (via CData Connect) as an Unqork service
  • Create a simple Unqork application to display XML data

Configuring CData Connect

To work with live XML data in Unqork, you need to:

  • Provide user access to the new virtual database in CData Connect
  • Connect to XML from CData Connect
  • Create OData endpoints for XML data

Add a CData Connect User

First, create a User in CData Connect. This lets you connect to XML from Unqork through CData Connect.

  1. Click the Users tab in CData Connect
  2. Click Add
  3. Enter a username in the User field
  4. Enter a password in the Password field
  5. Check the Active checkbox
  6. Configure a User
  7. Click Save Changes and make note of the new user's Authtoken

Connect to XML from CData Connect

CData Connect uses a straightforward, point-and-click interface to connect to data sources and generate APIs.

  1. Open CData Connect and click Connections
  2. Select "XML" from Available Data Sources
  3. Enter your authentication properties to connect to XML
    NOTE:

    See the Getting Started chapter in the data provider documentation to authenticate to your data source: The data provider models XML APIs as bidirectional database tables and XML files as read-only views (local files, files stored on popular cloud services, and FTP servers). The major authentication schemes are supported, including HTTP Basic, Digest, NTLM, OAuth, and FTP. See the Getting Started chapter in the data provider documentation for authentication guides.

    After setting the URI and providing any authentication values, set DataModel to more closely match the data representation to the structure of your data.

    The DataModel property is the controlling property over how your data is represented into tables and toggles the following basic configurations.

    • Document (default): Model a top-level, document view of your XML data. The data provider returns nested elements as aggregates of data.
    • FlattenedDocuments: Implicitly join nested documents and their parents into a single table.
    • Relational: Return individual, related tables from hierarchical data. The tables contain a primary key and a foreign key that links to the parent document.

    See the Modeling XML Data chapter for more information on configuring the relational representation. You will also find the sample data used in the following examples. The data includes entries for people, the cars they own, and various maintenance services performed on those cars.

  4. Click Save Changes
  5. Click Privileges
  6. Click Add to add a new or existing user with the appropriate permissions
  7. Click Save Changes.

Add XML OData Endpoints in CData Connect

After connecting to XML, create OData Endpoints for the desired table(s)

  1. Click the OData tab in CData Connect
  2. Click Tables
  3. Click Add Tables
  4. Select the XML database
  5. Select the table(s) you wish to work with and click Next
  6. Save the settings

NOTE: If you want to edit the table definition (select specific fields and more), click on the created tables on the OData tab.

(Optional) Configure Cross-Origin Resource Sharing (CORS)

When accessing and connecting to multiple different domains from an application such as Unqork, there is a possibility of violating the limitations of cross-site scripting. In that case, configure the CORS settings:

  1. Click the OData tab in CData Connect
  2. Click Settings and configure the CORS settings as follows:
    • Enable cross-origin resource sharing (CORS): ON (checked)
    • Allow all domains without '*': ON (checked)
    • Access-Control-Allow-Methods: GET, PUT, POST, OPTIONS
    • Access-Control-Allow-Headers: Authorization
  3. Save the changes

Sample URLs for OData Feeds

Once you create a CData Connect user, connect to XML, and create OData endpoints, you can access OData feeds for XML data. The output of the previous steps will be a list of tables and the associated URLs. Below, you will see the URLs to access tables.

For information on accessing the tables, click the API tab on the top right of the CData Connect website.

For the URLs, you will need the URL of the CData Connect instance, likely in the form: CONNECT_SERVER_URL/. Since we are working with React, we will append the @json parameter to the end of URLs that do not return JSON data by default.

Table         URL
Entity (table) List CONNECT_SERVER_URL/api.rsc/
Metadata for table people CONNECT_SERVER_URL/api.rsc/XML_people/$metadata?@json
people CONNECT_SERVER_URL/api.rsc/XML_people

As with standard OData feeds, if you wish to limit the fields returned, you can add a $select parameter to the query, along with other standard OData URL parameters, such as $filter, $orderby, $skip, and $top. See the CData help documentation for more information on supported OData queries.

Create a Simple Application for XML Data

With the REST API configured for XML through CData Connect, you are ready to create a XML-connected application in Unqork. Here are the basic steps to this process:

  • Register XML (via CData Connect) as an Unqork service
  • Create a workspace in Unqork
  • Create a module-type application

Register XML (via CData Connect) as an Unqork Service

To connect to CData Connect, you need to give your environment permission to connect with an external service. Do this through Services Administration.

  1. Click the Settings drop-down at the top right corner of the Unqork Designer Platform.
  2. Click Administration.
  3. Under Integration, click Services Administration.
  4. Enter a Service Title, for example, CData Connect.
  5. Enter a Service Name, for example, cdataConnect.
  6. Enter a Service protocol + host. This is the API endpoint you want to reference. For example, http://XXX.ap-northeast-1.compute.amazonaws.com:8153/api.rsc/.
  7. Select Basic Auth from the Type of Authentications drop-down.
  8. Enter the CData Connect user ID in the User Name field.
  9. Enter the CData Connect user Authtoken in the Password field.
  10. Click Add Service.

Create a Workspace

Unqork lets you create your own workspace, which is a virtual container for you and your team to store and organize your applications. Once you build a workspace, you can add applications to it.

To create a workspace:

  1. Click Create Workspace
  2. Enter a unique Workspace Name
  3. Click Create

Your workspace tile appears under the Workspaces tab.

Create a Module-Type Application

With your workspace added, you are ready to create your application. You have the choice between a module-type and workflow-type application. For this use case, make a module-type application.

  1. Navigate to the Apps tab from your open workspace.
  2. Click Create App.
  3. Enter a unique App Name.
  4. Select a preview style from the Style drop-down. A style specifies your application's appearance to your end-users. If left blank, your application uses the environment's default style.
  5. Select Module from the App Type drop-down.
  6. Select New Entrypoint Module from the App Entrypoint Module drop-down.
  7. Click Create.

You will land on the Modules tab of your new application. It should look like the following:

Click the title to open the module in the Module Editor.

To complete your application, you need the following components:

  • Hidden component: stores the data retrieved by the Plug-In
  • Initializer component: executes the Plug-In when displaying tables
  • Plug-In component: retrieves XML data through CData Connect and stores it in the Hidden component
  • ViewGrid component: creates an HTML table from the data stored in the Hidden component

Configure the Hidden Component

This Hidden component stores the XML data retrieved through CData Connect.

  1. Drag and drop a Hidden component onto your canvas.
  2. Enter a Property ID and Canvas Label Text.

    NOTE: Property IDs must be in Camel Case (stylized as camelCase). For example, hiddenComponent. Since the Hidden component is not visible to end-users, use your Property ID as the Canvas Label Text.

  3. Click Save.

Configure the Plug-in Component

Next, add a Plug-In component to request data from CData Connect. This component connects with the service you set up in Services Administration.

  1. Drag and drop a Plug-In component onto your canvas, placing it below the Hidden component.
  2. Enter a Property ID and Canvas Label Text.

    NOTE: You must use Camel Case (stylized as camelCase). For naming best practices, start your Plug-In's Property ID with plugin. For example, pluginGetAWProducts.

  3. Configure the Outputs table as follows:
    • Enter the Property ID of your Hidden component in the Property ID column.
    • Enter value in the Mapping column.
  4. Select External as the Service Type
  5. From the External Services drop-down, select your CData Connect service. This is the external service you set up in Services Administration.
  6. Add the specific endpoint for your CData Connect resource to the end of the Data Source URL. For example, AdventureWorks2012_Production_Product.

    NOTE: Your Data Source URL should have a value similar to: https://www.cdata.../myinstce/api.rsc/AdventureWorks2012_Production_Product. Check the API tab in CData Connect.

  7. Click Save.

Configure the Initializer Component

The Initializer component is what fires the Plug-In to retrieve your XML data.

  1. Drag and drop an Initializer component onto your canvas, placing it above the Plug-In component.
  2. Enter a Property ID and Canvas Label Text.

    NOTE: You must use Camel Case (stylized as camelCase). For naming best practices, start your Initializer's Property Name with init. For example, initGetAWProducts.

  3. Set New Submission as the Trigger Type.
  4. In the Outputs table, enter the following:
    • Enter the Property ID of your Plug-IN in the Property ID column's field.
    • Enter trigger in the Type column's field.
    • Enter GO in the Value column's field.
  5. Click Save.

Configure the ViewGrid Component

The ViewGrid component references the data stored in your Hidden component. Then, it displays the XML data to your end-users in a dashboard (or table).

  1. Drag and drop a ViewGrid component onto your canvas, placing it below the Plug-In component.
  2. Enter a Label and Property Name.

    NOTE: You must use Camel Case (stylized as camelCase). For naming best practices, start your ViewGrid's Property Name with vg. For example, vgAWProductView.

  3. In the Inputs table, set id to the Property ID of the hidden component.
  4. In the Display table:
    • In the id column: enter the IDs of the fields you want to display.
    • In the heading column: enter the title you want for each field. This is how the field will display to your end-users.
  5. Click Save.
  6. Save your module.

Once you add and configure the above components, you can preview how your application looks to end-users. In the Module Editor, click Preview Module to see the front-facing view (or "Express View") of the module.

Your Express View module should look something like this:

More Information & Free Trial

With CData Connect and Unqork, you can easily build XML-connected applications. Request a free trial of CData Connect and start working with XML data in Unqork today.