0 votes
by (150 points)

Applies to: Rebex FTP/SSL

1 Answer

0 votes
by (150k points)
selected by
 
Best answer

using System;
using Rebex;
using Rebex.Net;

class Program
{
    static void Main()
    {
        Licensing.Key = "==AN4iE2sf569ak96g8Ov9+8z2bTRnRoS3JieHn1m7Zwas==";
        using (var ftp = new Ftp())
        {
            ftp.LogWriter = new ConsoleLogWriter(LogLevel.Debug);
            ftp.Connect("test.rebex.net");
            ftp.Login("demo", "password");
            ftp.GetRawList();
        }
    }
}

by (150 points)
Hello,

I was using the Trial Key "==AJzs0XEEnb35jdtPOkIus0we6XTOVNAiYj2acV4VBVW4==" from https://www.rebex.net/support/trial/ , but with yours it was possible to connect now.

Thank you very much.
Best regards,
Roberto Silva
...