0 votes
by (150 points)

Dear fellows,

I was trying to use the actual Trial Key in .NET framework 4.0, but I am receving an error at your end:

*Error: Trial version of Rebex.Ftp has expired. To continue using it, please purchase a license at https://www.rebex.net/shop/.*

Can you please check it?

Best regards,
Roberto Silva

Applies to: Rebex FTP/SSL

1 Answer

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

This error is raised when a 30-day trial key has expired. It is supposed to inform the trial user that their evaluation period is over. If this is not the case, something is wrong somewhere - common reasons include wrong system date, or custom application setting multiple different trial keys (some of them expired).

Could you please try running the following simple console application using Rebex FTP? Does it work, or does it fail with "trial version expired" error as well?

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
...