Configure the Connector

Before running the connector you must modify connectorLibDotNet.cfg.

In the [Connector] section of the configuration file, set the following parameters. These parameters tell ConnectorLib .NET how to locate your connector implementation:

DotNetConnectorLibrary The path to your connector DLL.
DotNetConnectorClass The class implementing the connector.

For example, this is the configuration for the HelloWorld connector introduced in Implement a New Connector:

[Connector]
DotNetConnectorLibrary=HelloWorldConnector.dll
DotNetConnectorClass=MyConnectorNamespace.MyConnector

Licensing

In the [License] section of the configuration file, specify the location of your license server. All connectors written using ConnectorLib .NET require a ConnectorLib .NET license. If the connector cannot find the license it logs an error to license.log and terminates. To specify the location of your license server, set the following parameters:

LicenseServerHost The host name or IP address of the machine that hosts the License server.
LicenseServerACIPort The ACI port of the License server.

For example:

[License]
LicenseServerHost=licenses
LicenseServerACIPort=20000