.NET Framework and .NET Core Programmer’s Checklist

Use this checklist when developing programs that use the TIBCO FTL .NET API.

When using the group facility, see also Programmer’s Checklist Addenda for Groups.

Environment

Set up the environment for .NET Framework 4.7.2. Ensure that it is current with the latest updates.

TIBCO FTL classes require Microsoft Visual Studio 2017 for development.

TIBCO FTL software requires 64-bit support (in the operating system and .NET Framework/Core).

Use the setup script in the samples directory to set environment variables.

For .NET Framework, ensure that the PATH environment variable includes the .NET Framework SDK (%windir%\Microsoft.NET\Framework64\dotnet_version).

For .NET Core, ensure that LD_LIBRARY_PATH (UNIX), PATH (Windows) or DYLD_LIBRARY_PATH (Mac OS) points to TIBCO_HOME/ftl/<version>/lib (UNIX, Mac OS) or TIBCO_HOME\ftl\<version>\bin (Windows).

Also for .NET Core, ensure that the dotnet driver version 2.1 is installed.

Code

To simplify coding, programs can include this statement:

      using TIBCO.FTL;

Compile

TIBCO FTL classes require .NET Framework 4.7.2.

To use the TIBCO FTL classes, programs must reference the assembly TIBCO.FTL. If the .NET framework is properly installed, then installing TIBCO FTL registers the assembly with the Windows general assembly cache (GAC).

The assembly TIBCO.FTL is compiled with platform target x64. You must compile applications that use TIBCO.FTL accordingly.

Run

TIBCO FTL classes require .NET Framework 4.7.2.

To use the TIBCO FTL classes, application processes must access the assembly TIBCO.FTL, which installs into the Windows general assembly cache (GAC).

The PATH variable must include the bin directory to use the TIBCO FTL DLL files.

You must arrange appropriate .NET security for your applications. The base library calls unmanaged code, and requires full trust.

Ensure that the FTL server is running, and that each client process can connect to it.