SmartFtp Library

Buenos días.
 
Acabo de descargar la versión 3.0.236.0 de SmartFTP FTP Library para ver si me puede ser útil pero al intentar establecer la conexión me lanza la siguiente excepción: COMException: License error
 
Estoy haciendo la prueba con un cliente windows forms en C#
 
En el código fuente del ejemplo de CSharpDemo he visto el siguiente fragmento de código:
 
//global.LoadLicense("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
 
 
Mi código es el siguiente:
 
    public partial class MainForm : Form
    {
        private FTPFXP _fxp;
        private FTPConnectionMTA _destination;
        private FTPConnectionMTA _source;
        public MainForm()
        {
            InitializeComponent();
            sfFTPLib.Global global = new sfFTPLib.Global();
            _destination = new FTPConnectionMTA();
            _destination.Host = "destino";
            _destination.Username = "prueba";
            _destination.Password = "prueba";
            _destination.LogFile.File = "destination.log";
            _destination.Connect();
            _source = new FTPConnectionMTA();
            _source.Host = "origen";
            _source.Username = "prueba";
            _source.Password = "prueba";
            _source.LogFile.File = "source.log";
            _source.Connect();
            _fxp = new FTPFXP();
            _fxp.Destination = _destination;
            _fxp.Source = _source;
            FTPItems itemsInSource = _fxp.Source.ReadDirectory();
        }
    }
 
¿Tengo que descargar alguna licencia para la trial de la librería de algún sitio?
 
 
Muchas gracias.

The trial license is automatically obtained from the license server. Unblock the executable in the software firewall/antivirus product.

Gracias.
 
Y perdón por no poner la pregunta en el foro correcto.