Hi,
i just test if i can use the edtFTPnet/Express for my app and i have a connection problem.
If have to use an http proxy to access the ftp server. In Filezilla it only works with these settings for the FTP Proxy:
USER %u@%h %s
PASS %p
ACCT %w
How can i make these settings in your component? I have seen a similar thread about this but the solution was for the Java version
and didn't work for my dotnet app. I cant find the FTP Client component and the login method for the connection doesn't have any parameters i can set
This was the solution in the other thread:
*******
The key is the settings you've worked out:
USER %u@%h %s
PASS %p
ACCT %w
So you need to supply these settings. With FTPClient you can do this via
login(String user, String password, String accountInfo)
e.g.
login("user@host proxyuser", "pwd", "proxypwd");
**************
thanks for your help
Georg