Re: FTP Attempts

2006-04-20 Thread Mark Talluto
On Apr 19, 2006, at 1:41 PM, Todd Geist wrote: Hello, I am trying the following script and I am getting an error. ON mouseUp pMouseBtnNum libURLSetFTPMode "passive" get libURLftpCommand("NLST","ftp4.mysite.com: 21","",""") put it into field 1 pass MouseUp END MouseUp --

Re: FTP Attempts

2006-04-19 Thread Todd Geist
Thank You! On Apr 19, 2006, at 2:53 PM, Mark Schonewille wrote: Hi Todd, You cannot issue an NLST command with libUrlFtpCommand. Instead, you have to use the libURLSetFTPListCommand command. libURLSetFTPListCommand -- Todd Geist __ g e i s t i n

Re: FTP Attempts

2006-04-19 Thread Mark Schonewille
Hi Mark, If Todd were using active ftp, my first question would be "some reason why you're using active mode instead of passive"? I believe, default mode should be passive, because you can just keep port 21 open and don't need to worry about all other ports that would have to be open if activ

Re: FTP Attempts

2006-04-19 Thread Mark Schonewille
Hi Todd, You cannot issue an NLST command with libUrlFtpCommand. Instead, you have to use the libURLSetFTPListCommand command. libURLSetFTPListCommand Once you have done that, you can retrieve a list using the put url command: put url "ftp://user:[EMAIL PROTECTED]/dir/" Note the slash at

Re: FTP Attempts

2006-04-19 Thread Todd Geist
Hi Mark. On Apr 19, 2006, at 1:49 PM, Mark Wieder wrote: Todd- Wednesday, April 19, 2006, 1:41:13 PM, you wrote: ON mouseUp pMouseBtnNum libURLSetFTPMode "passive" Some reason you're using passive mode instead of active? I don't have the time to look this up right now, but I don't thi

Re: FTP Attempts

2006-04-19 Thread Mark Wieder
Todd- Wednesday, April 19, 2006, 1:41:13 PM, you wrote: > ON mouseUp pMouseBtnNum > libURLSetFTPMode "passive" Some reason you're using passive mode instead of active? I don't have the time to look this up right now, but I don't think you can mix passive mode and port 21. Other than that, d

FTP Attempts

2006-04-19 Thread Todd Geist
Hello, I am trying the following script and I am getting an error. ON mouseUp pMouseBtnNum libURLSetFTPMode "passive" get libURLftpCommand("NLST","ftp4.mysite.com: 21","",""") put it into field 1 pass MouseUp END MouseUp --> 226 Transfer Failed! Any clues for me? Also