C cwy1002 Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-16 #1 我用ics的ftpclient控件编写ftp客户端程序时,若用代理服务器与主机连接时,如何设置 代理服务器的用户名和口令(ftpclient控件中好象没有设置代理服务器的用户名和口令的 属性)。
A arnew Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-19 #2 ICS的FtpClient中有几个属性:ProxyServer;SocksPassword;SocksPort;SocksServer; SocksUserCode;我想ProxyServer是用来设置代理服务器的, TFtpConnectionType = (ftpDirect, ftpProxy, ftpSocks4, ftpSocks4A, ftpSocks5); 是指FTP连接方式 ftpDirect,直接连接 ftpProxy, 代理服务器连接 ftpSocks4,SOCKS4连接 ftpSocks4A, SOCKS4A连接 ftpSocks5; SOCKS5连接
ICS的FtpClient中有几个属性:ProxyServer;SocksPassword;SocksPort;SocksServer; SocksUserCode;我想ProxyServer是用来设置代理服务器的, TFtpConnectionType = (ftpDirect, ftpProxy, ftpSocks4, ftpSocks4A, ftpSocks5); 是指FTP连接方式 ftpDirect,直接连接 ftpProxy, 代理服务器连接 ftpSocks4,SOCKS4连接 ftpSocks4A, SOCKS4A连接 ftpSocks5; SOCKS5连接
C cwy1002 Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-20 #3 如FtpConnectionType = ftpProxy时,如何设置代理服务器的用户名和口令?
M mypeoplelxt Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-21 #4 FtpClient1.HostName :=代理服务器 FtpClient1.Password:=ftp服务器的用户密码 FtpClient1.UserName:=ftp服务器的用户帐号+'@'+ftp服务器 别的不设应该也可以的
FtpClient1.HostName :=代理服务器 FtpClient1.Password:=ftp服务器的用户密码 FtpClient1.UserName:=ftp服务器的用户帐号+'@'+ftp服务器 别的不设应该也可以的