Develop Your First Connected System

This page provides a follow-up to developer setup. This page details how to create a project, build it, and deploy it to your Appian site, all in about 30 minutes.

Create a Unique Project from the Hello World Example

This section guides you through the process of creating a new IntelliJ project from our examples. You can refer back to this section whenever you are creating a new project from one of these examples.

Throughout the Quick Start, we change "Hello World" to "Hello Appian" to illustrate the idea of updating the project's artifact names. In your project, feel free to use any name. Just be sure to update all the same places we do!

Download and Unzip the Examples

  1. Download the Hello World example here.
  2. Unzip the downloaded file into the directory you want the project to live in.

Update project-specific IntelliJ and Gradle settings

  1. Rename the Hello World folder to Hello Appian.
  2. Open IntelliJ.
  3. Open the folder you renamed in step 1 (Hello Appian):
    1. Click File > Open.
    2. Navigate to the Hello Appian folder.
    3. Click Open.
  4. If additional dialogs appear, select gradle, and continue through the dialogs using default values.
  5. Open the settings.gradle file and change hello-world-csp to hello-appian-csp.

Ensure your Project is using Java 8

  1. Click File > Project Structure.
  2. Click the Project tab.
  3. For Project SDK, if 1.8 is an option, ensure it is selected. If it is not an option, see the Set up IntelliJ section.

Give Plug-in Artifacts Unique Names

In this section, you will update the packages, classes, and annotations to make your project unique.

Start by opening the Project tool window (View > Tool Windows > Project). You will see two folders here: (1) Hello Appian and (2) External Libraries.

project.png

Navigate to src/main/java in the Hello Appian [hello-appian-csp] project.

Within that project you should see a directory created with the name com.mycorp.helloworld.templates. Modify the following items:

Update Packages

  1. In the Project tool window, navigate to src/main/java. You will see there is a package called com.mycorp.helloworld.templates.

    commycorphelloworldtemplates.png

  2. Right-click (secondary click) on the com.mycorp.helloworld.templates, then click refactor > rename, and change mycorp.helloworld to example.helloappian.
  3. Click Refactor.

    refactorhelloappian.png

  4. You will notice the old package mycorp.helloworld becomes empty in the project directory; delete the helloworld directory.

Update Template Classes

Navigate to the com.example.helloappian.templatesin the Project tool window. You will see two java classes: HelloWorldConnectedSystemTemplate and HelloWorldIntegrationTemplate.

  1. Update class names:
    • Right click on the class HelloWorldConnectedSystemTemplate.
      1. Click refactor > rename.
      2. Change the name to HelloAppianCSP and click Refactor

      refactorHelloAppianCST.png

      • If the Refactoring Preview pane appears, click Do Refactor.
        1. Right-click on the HelloWorldIntegrationTemplate.
        2. Click refactor > rename.
        3. Change name to HelloAppianIntegrationTemplate
      • If the Refactoring Preview pane appears, click Do Refactor.

      refactorhelloappianitg.png

  2. Update @TemplateId annotation:
    • Navigate to the java classes and change the name of the @TemplateId annotation.
      • In HelloAppianCSP, change @TemplateId(name="HelloWorldConnectedSystemTemplate") annotation to @TemplateId(name="HelloAppianCSP")
      • In HelloAppianIntegrationTemplate, change @TemplateId(name="HelloWorldIntegrationTemplate") annotation to @TemplateId(name="HelloAppianIntegrationTemplate")

    TemplateId is the identifier for your template and all its versions. To ensure your ID does not unintentionally conflict with other templates, we recommend using package-structure-style naming, for example com.mycorp.template.

  3. Ensure @IntegrationTemplateType annotation is correct.

Integration template type indicates the request policy of your Integration Template. There are three types: READ, WRITE and READ_AND_WRITE. READ indicates that the template retrieves data from an external service, WRITE indicates that the template modifies data on an external service such as HTTP POST or HTTP DELETE. If the template can modify or query data depending on the designer's intent, then annotate the template with READ_AND_WRITE. If a template is READ_AND_WRITE, the designer can indicate which type of operation they intend to perform.

Since we are not modifying the request type of the HelloWorld template, we will leave the template type as is.

After modifying the configuration of your classes, the class structure should match the following code.

1
2
@TemplateId(name="HelloAppianCSP")
public class HelloAppianCSP extends SimpleConnectedSystemTemplate {...
1
2
3
@TemplateId(name="HelloAppianIntegrationTemplate")
@IntegrationTemplateType(IntegrationTemplateRequestPolicy.READ)
public class HelloAppianIntegrationTemplate extends SimpleIntegrationTemplate {...

projectstructureafterchange.png

Update the Appian Plug-in XML

  1. Open to src.main.resources.appian-plugin.xml in the Project tool window.
  2. Change appian-plugin's name from My Corp Connected System - Hello World to My Corp Connected System - Hello Appian, and the appian-plugin's key from hello-world to hello-appian.
  3. Under plugin-info, change the description to fit your template's description.
  4. Change vendor to your organization's name and url.
  5. Leave version as 1.0.0.0.
  6. Under connected-system-template, change the key and name to HelloAppianConnectedSystem.
  7. Under integration-template, change the key and name to HelloAppianIntegrationTemplate.

This information should now look like the code below:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<appian-plugin name="My Corp - Hello Appian" key="hello-appian">
    <plugin-info>
        <description>My Corp Connected System - Hello Appian</description>
        <vendor name="Example Corp" url="http://www.example.com"/>
        <version>1.0.0.0</version>
        <application-version min="7.6.0.4"/>
    </plugin-info>
    <connected-system-template key="HelloAppianConnectedSystem"
            name="HelloAppianConnectedSystem"
            class="com.example.helloappian.templates.HelloAppianCSP">
        <integration-template key="HelloAppianIntegrationTemplate"
                name="HelloAppianIntegrationTemplate"
                class="com.example.helloappian.templates.HelloAppianIntegrationTemplate" />
    </connected-system-template>
</appian-plugin>

Update Template Name and Description

  1. Open src/main/resources_en_US.properties.
  2. Change the resource keys to match the class names:
    • Change HelloWorldConnectedSystemTemplate.name to HelloAppianCSP.name.

This resource file should look like the code below:

1
2
3
4
5
## Must have [class].name and [class].description for all connected system and integration templates
HelloAppianCSP.name=Hello Appian Connected System
HelloAppianCSP.description=Sample CS for learning how to use plug-in repo CSPs!
HelloAppianIntegrationTemplate.name=Hello Appian Integration
HelloAppianIntegrationTemplate.description=Sample CS for learning how to use plug-in repo CSPs!

Now that all of the configurations meet your template's requirements, the Connected System Template and Integration Template can be modified to contain the internal logic needed for your integration.

Build the JAR

Now that you're done updating your template code and artifacts, you're ready to build and deploy the jar.

To create the jar from the command line:

  1. Navigate to your project's root directory.
  2. Run the following command: ./gradlew jar.

To create the jar from IntelliJ:

  1. Open the Gradle tool window in IntelliJ by clicking View > Tool Windows > Gradle
  2. Expand Tasks > Build. You should see gradle job structure like this:

    jartask.png

  3. Double-click the jar job.

If everything is set up correctly, you will see a successful message in the console like this:

jaroutput.png

You should see your JAR file created under /build/libs.

createdjar.png

Then, add the jar file to the <APPIAN_HOME>/_admin/plugins folder to deploy it.

How to Check if the CSP Deployed Successfully

Look at the Connected System Designer

  1. Open your browser and navigate to <Appian.instance>/design.
  2. Click New > Connected System and in the modal your new connected system type should appear.

Look at the Plug-in List

  1. Open your browser and navigate to <Appian.instance>/admin.
  2. From the SYSTEM menu, go to plug-ins. The plug-in will appear in the Deployed plug-ins list.

Look at the Logs

On Tomcat, go to <APPIAN_HOME>/logs. Then run:

1
tail -f tomcat-stdOut.log.<date>

You're looking for the following messages:

Connected System Template

1
[Appian Plugin Hot Deploy] INFO  com.appiancorp.connectedsystems.templateframework.osgi.ConnectedSystemTemplateModuleParser - Extracted com.appiancorp.connectedsystems.templateframework.sdk.ConnectedSystemTemplate classes for registration for the 'HelloAppianConnectedSystem' module in 0ms

Integration Template

1
[Appian Plugin Hot Deploy] INFO  com.appiancorp.connectedsystems.templateframework.osgi.ConnectedSystemTemplateModuleParser - Extracted com.appiancorp.connectedsystems.templateframework.sdk.IntegrationTemplate classes for registration for the 'HelloAppianConnectedSystem' module in 0ms

Plug-in successfully installed

1
[Appian Plugin Hot Deploy] INFO  com.appiancorp.plugins.osgi.AppianOsgiPlugin - Successfully installed Plug-in 'My Corp Connected System - Hello Appian (hello-appian) version 1.0.0.0.

Congratulations! Your plug-in should now be deployed. Follow the steps below to test it out.

  1. Open an application in the Appian Designer.
  2. Click New > Connected System.
  3. In the Custom (BETA) category, choose your new template.
  4. In the Connected System designer, enter a name.
  5. Enter Hello in the Text Property field.
  6. Click Use in New Integration.
  7. Enter a name.
  8. Click Create.
  9. From the Integration Designer, enter Appian in the Text Property field.
  10. Click Test Request.

Your two text properties should be concatenated and Hello Appian should display in the Results pane.

Next Steps

Now you're ready develop your own Connected System Plug-in. You can start by reading through the Core Concepts section to learn important concepts about the SDK, or you can jump straight to the Examples, and go back to the over when you want to get a deeper understanding of what's going on.

At any point, if you need help doing something in particular, check the How To section.

Open in Github Built: Wed, Aug 17, 2022 (01:05:05 PM)

On This Page

FEEDBACK