I have several .NET DLLs built around the edtFTPNet DLL (free version).
From what I can gather, all that is necessary to implement the edtFTPNetPRO (subscribed version) is:
- replace the edtFTPNet DLL in the project BIN directory with edtFTPNetPRO DLL
- change the project reference to point to that DLL
however, what I don't know is whether the namespace is the same for the DLLs?
Since the FREE version only performed standard non-secure FTP functions,
the namespace used in my C# code was:
using EnterpriseDT.Net.Ftp;
Is this still correct?
Is there anything else I would need to do to implement the edtFTPNetPRO DLL so long as NO secure FTP functions are used at this time?