|
VB.NET 2005 I have been using the FTP and SFTP for a while with no issues. Now i need to also use SSL/FTP. My references are all under c:program filesrebextotal pack for .net 2.0\
But, when i try to dim a new ftp:
i receive an error: Overload resolution failed because no accessible 'Connect' accepts this number of arguments. Which is really strange because as i typing in everything it is explaining each argument. Any Ideas? |
|
There are two editions of Rebex.Net.Ftp.dll - one comes from "Rebex FTP/SSL for .NET" and the other one comes from "Rebex FTP for .NET". Only the FTP/SSL edition supports this variant of Alternatively, download and install Rebex FTP/SSL into a new folder - that will install the right DLLs. |
|
I understand that, but my reference is only to the FTP SSL for .NET 2.0binRebex.net.ftp.dll, which my understanding is has both FTP and FTP/SSL. And i can't include both in my project because both are named the same for the DLL. If the 4-parameter variant of Ftp.Connect method is missing, it really looks like it's Rebex FTP DLL. not Rebex FTP/SSL DLL (another difference is the absence of Secure metod or TlsSocket property). You don't hve to include both variants of the DLL in your projects because Rebex FTP/SSL DLLs supports both plain and SSLified variants of FTP protocol. Installing Rebex FTP/SSL in a new folder and copying the DLLs over would ensure that you have the correct ones. And some good news: In the next release, there will only be one FTP DLL with FTP/SSL support.
(13 Nov '11, 19:07)
Lukas Pokorny ♦♦
|
|
Interesting. I removed (from Control Panel) the Rebex FTP program. I then reinstalled the total pack 2.0. i then made sure the references were correct and i tried to do the .secure - it said i had to include SecureSocket. When i included that the 4 argument connect worked. So, i beleive it is now working. Thanks. |