Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create Connection | User Interface

  1. Select Connections > Add connection.

  2. Select OpenText Content Server as the platform on the Add connection modal.

  3. Enter the connection information. Reference the table below for details about each field.

  4. Select Test connection to ensure DryvIQ can connect using the information entered.

  5. You will see a "Connection test succeeded" message on the Add connection modal when DryvIQ establishes connection. (If you don't see this message, verify the information you entered.)

  6. Select Done.


Add Connection Modal - OpenText Content Server

...

Field

Description

Required

Display as

Enter the display name for the connection. If you will be creating multiple connections, ensure the name readily identifies the connection. The name displays in the application, and you can use it to search for the connection and filter lists.

If you do not add a display name, the connection will automatically be named using the OpenText server URL entered. For example, OpenText (https://{servername}/otcs/cs.exe/).

Optional

Url

Enter the URL to access the server. This will look similar to the following example: https://{servername}/otcs/cs.exe/.

Required

User name

Enter the username that should be used to log on to the server. This needs to be an account with permissions to access the content that will be processed.

Required

Password

Enter the password for the username added in the previous field.

Required

DS Service name

Enter the directory service name. This defines how DryvIQ can access the user/group directory. DryvIQ will use “otdsws” as the default name. Specify a different name if needed.

Optional

CS CGI

Enter the connection information for the content services common gateway interface. The entry will look similar to the following example: http://{servername}/otcs/cs.exe.

Optional

Extension module installed?

Select if the Syntergy extension module is installed. This indicates if you use Syntergy API extensions for managing timestamps and author information. Learn more about Syntergy API Extensions.

Optional

Connection Test Succeeded

...

Features and Limitations

Platforms all have unique features and limitations. DryvIQ’s transfer engine manages these differences between platforms and allows you to configure actions based on Job Policies and Behaviors. The information below is platform specific. Use the Platform Comparison tool to see how your integration platforms may interact regarding features and limitations. 

Email Folders

OpenText supports email folders (subtype 751). DryvIQ cannot see the email folders and therefore, will not migrate content in these folders.

...

Example Job: OpenText connection created as standard user, no impersonation

POST {{url}}v1/jobs

Code Block
{
    "name":"Simple Job",
    "kind": "transfer",
    "transfer": {
      "transfer_type": "copy",
        "source": {
            "connection": { "id": "{{OpenText_Connection_sourceID}}" },
            "target": {
                "path": "/sourceDocumentLibrary"
            }
        },
        "destination": {
            "connection": { "id": "{{Box_Connection_destinationID}}" },
            "target": {
                "path": "/destinationFolder"
            }
        },
        "simulation_mode": false
    },
    "schedule": {
        "mode": "manual"
    },
    "stop_policy": {
        "on_success": 5,
        "on_failure": 5,
        "on_execute": 25
    },
    "category": {
      "name": "Report {Name}"
    }
}