Ready to get started?

Learn more:

Shopify Connectivity Solutions

Tutorial: Use the CData BizTalk Adapter for Shopify to Execute Updategrams



Create a simple application in which you use the adapter for Shopify to execute an updategram and then write the response from Shopify to a file.

The CData BizTalk Adapter for Shopify enables you to execute SQL commands, updategrams, and stored procedures on Shopify data in BizTalk. This article provides a walk-through of an application that uses an updategram to insert Shopify data.

  1. A one-way file receive location picks up the XML document that contains the updategram.
  2. The document is routed to a solicit-response send port configured for the adapter.
  3. The adapter executes the command. The result of an insert contains the Id of the new record and the rows affected.
  4. The response from Shopify is routed to a one-way file send port, which writes the BizTalk message to a file.

Create the Sample Application

The following sections walk through creating the sample application:

  1. Generate the Schema and an Updategram Instance
  2. Configure a Receive Port
  3. Configure a File Receive Location
  4. Configure the Adapter in a Solicit-Response Send Port
  5. Configure a File Send Port
  6. Create Filters to Route BizTalk Messages Through the Application
  7. Enlist and Enable the Locations and Ports
  8. View Application Logs

Generate the Schema and an Updategram Instance

You can use wizards in Visual Studio to generate the schema and updategram instance:

  1. Add the Adapter to Your Project
  2. Generate an Insert Schema
  3. Generate an Updategram Instance

Add the Adapter to Your Project

Use the Add Adapter wizard to add the adapter to your project. You will use the adapter to query Shopify for metadata about the table you want to insert to; for example, "Customers".

  1. Right-click on the project in the Solution Explorer and click Add -> Add Generated Items.
  2. Select Add Adapter Metadata in the resulting dialog box.
  3. In the resulting Add Adapter Wizard, select the CData BizTalk Adapter for Shopify from the list view.
  4. In the Port menu leave the selection blank. Or, if you want to use the connection string for an adapter you have already configured, select the send port or receive location from your BizTalk application.

Generate an Insert Schema

You will use the schema as a template for creating an updategram that will insert Shopify data. The schema is an .xsd file that defines the XML request and response. As an example, we show how to generate an insert updategram. You can follow the same process to generate update and delete updategrams.

  1. In the Connection String page of the Schema Wizard, enter authentication credentials and other connection properties.
  2. In the next step select the Send Port option.
  3. Clear the One-Way option. The One-Way option ignores any response from the adapter for the updategram, such as the AffectedRows value that is returned. The Id of the newly created row is also returned. By disabling the One-Way option you will get an updategram schema that supports retrieving the Id.
  4. In the Command Type menu select Updategram.
  5. Select the Insert option and select the table and columns you want to insert into. This tutorial uses FirstName and Id.

    Note: When you create the updategram, you are limited to inserting the columns you include in the schema.

  6. On the summary page verify the settings you defined and click Finish to close the wizard.

Generate an Updategram Instance

In this step you will create the XML message that will in later steps be sent to the adapter. To create the updategram right-click the .xsd file in the Solution Explorer and then click Generate Instance. The location where the updategram is saved is listed in the Output tab.

The updategram is structured to define what response is desired from Shopify. For example updategrams and more information, see the help documentation for the adapter.

Configure the Receive Port

To add a receive location to your application, you first need to add a receive port. Receive ports can receive data from multiple receive locations.

  1. Open your application in the BizTalk Server Administration Console.
  2. Right-click Receive Ports and click New -> One-Way Receive Port. The Receive Port Properties dialog is displayed.
  3. Enter a name for the receive port.

Configure the File Receive Location

A static one-way file receive location will create a BizTalk message containing the updategram.

  1. Right-click Receive Locations and click New -> One-Way Receive Location.
  2. Select the receive port of which the new receive location will be a member. The Receive Location Properties dialog is displayed.
  3. Enter a name for the receive location.
  4. Select FILE in the Transport Type menu.
  5. Click Configure. The File Transport Properties dialog is displayed.
  6. In the Receive Folder box, enter the path to a folder; for example, DemoOutbound. The receive location will scan this folder for files that match the criteria in the File mask box.
  7. In the Receive Pipeline menu of the Receive Location Properties dialog, select the default option, PassThruReceive.

Configure the Shopify Adapter in a Solicit-Response Send Port

Configuration consists of the following steps:

  1. Create and Configure the Solicit-Response Send Port
  2. Configure the Adapter
  3. Configure the Connection to Shopify

Create and Configure the Solicit-Response Send Port

Use a solicit-response send port to obtain the result of an updategram command; in this tutorial the Id of the newly inserted record is returned in BizTalk.

  1. Open your BizTalk application in the BizTalk Administration Console.
  2. Right-click Send Ports and select New -> Static Solicit-Response Send Port. The Send Port Properties dialog is displayed.
  3. Enter a name for the send port.
  4. In the Transport Type menu select CData.Shopify.

Configure the CData Shopify Adapter

Define the command the adapter will execute in the Adapter Transport Properties dialog.

  1. In the send port properties click the Configure button. The Adapter Transport Properties dialog is displayed.
  2. In the CommandType property select Updategram.
Refer to the Adapter Configuration section in the help documentation for descriptions of the various adapter properties and their functions.

Configure the Connection to Shopify

Configure credentials and other properties required to connect to Shopify:

  1. In the Adapter Transport properties dialog click the button in the Connection String property. The Connection String Options dialog is displayed.
  2. Enter connection properties.

    Below is a typical connection string:

    AppId=MyAppId;Password=MyPassword;ShopUrl=https://yourshopname.myshopify.com;

    To make use of all the features of the data provider, provide the AppId, Password, and ShopUrl connection properties.

    To obtain these values, see the Getting Started section in the help documentation to register the data provider as an application with Shopify.

  3. Click Test Connection to verify the values.
Refer to the Connection String Options chapter in the help documentation for descriptions of the various connection properties and their functions.

Configure a File Send Port

The file send port will write to a file the Id that is returned from the insert. Follow the steps below to configure a one-way send port to write incoming messages to a file.

  1. Right-click Send Ports and then click Static One-Way Send Port.
  2. In the Type menu, select FILE.
  3. Click Configure.
  4. In the Destination Folder box enter the path to the folder where the message will be written. For example, DemoInbound.

Create Filters to Route BizTalk Messages Through the Application

Follow the steps below to create filter rules that will define the following associations in your application:

  • Associate the solicit-response send port with the BizTalk message that contains the updategram.
  • Associate the file send port with the BizTalk message created by the result of executing the updategram.

  1. In the solicit-response send port properties, click Filters and set the following values:

    • Property: Select BTS.InboundTransportLocation from the menu.
    • Value: Enter the URI of the one-way receive location, "C:\DemoOutbound\*.xml" in this example.
  2. In the one-way send port properties, click Filters and set the following values:

    • Property: Select BTS.SPName from the menu.
    • Value: Enter the name (not URI) of the solicit-response send port.

Enlist and Enable the Locations and Ports

To ensure that the updategram is picked up by the receive location, follow the steps below when starting your BizTalk application:

  1. Right-click the solicit-response send port and click Start. This will also enlist the send port.
  2. Right-click the one-way send port and click Start. This will also enlist the send port.
  3. Right-click the receive location and click Enable.

You can now copy the updategram into the folder that you configured for the receive location.

Open the folder that you configured for the one-way send port: This folder contains the new Id in an XML file. The message will resemble the following example:

<table xmlns="http://www.cdata.com/ShopifyProvider" AffectedRows="1"> <row> <Id>0014000001XERBUAA5</Id> </row> </table>

View the Application Logs

In the Application Logs you can view error messages and quickly check that your application has initialized successfully. To open the logs expand the Event Viewer (Local) node in the navigation tree in the Administration Console. Expand Windows Logs and select Application.

A list of errors that have occurred will be available here. This will include error messages for all applications on the system, so it is important to check the source of the error message. For the receive location, the source should be "CData BizTalk Shopify Receive Adapter". Details of the error message should provide insight into why the error is occurring.

Contact support@cdata.com for guidance on resolving the error.