Using NotesFTP Script Library (http://www-10.lotus.com/ldd/sandbox.nsf/af0f1b4673fc2715852570ff006cd3ff/9e752a60b6f902c7852568ef006b4ad1?OpenDocument) to connect to an FTP server that does not need a username or password.
I have tried:
Set objFTP = New NotesFTPSession
With objFTP
.Connect ftpServer, "", "", 0
.PutFile fileLocation, fileName, FTP_TRANSFER_TYPE_ASCII
.Disconnect
End With
and I cannot connect. I have tried passing empty parameters (no quotes) and Nothing and it does not work. The error I get is:
Error (302): Could not connect to host
I can open the FTP server through a browser ---- it does ask or need a username and password…
I know this is a custom script library, but hoping someone has run into this…
Thanks!
Dan