Are using FTPConfig( "FTP PROTOCOL", "SECURE" ) ? Can you post your script here (replacing username and password with asterisks)? : I am trying to write a script to go through a secure FTP gateway. After : connecting : to the gateway, I am prompted for username, password, then account. How can I : do : this with using the built in FTP function (FTPGetFile, etc.) : Ex: (this is what I would do to login manually) : ftp ftp-gateway.server.com : 220 Ready : User: userOne@host.serverTwo.com remoteAcctName : 331 Password required for destination user 'userOne' : Password: userOnePassword : 332 Enter Password (use the 'account ' or 'quote acct ' command to r : espond): remoteAcctPassword : where user/pass pairs are: userOne@host.serverTwo.com / userOnePassword : remoteAcctName / remoteAcctPassword : Thanks.
|