A simple process flow(Start - ftp activity - End) can't connect to FileZilla FTP server.
The locations(working and remote locations) are set. And FileZilla service is running. port was 21.
parameters of the ftp activity:
COMMAND C:\WINDOWS\system32\ftp.exe
PARAMETER_LIST ?"-s:${Task.Input}"?
SUCCESS_THERSHOLD 0
SCRIPT
open ${Remote.Host}
${Remote.User}
${Remote.Password}
lcd ${Working.RootPath}
cd ${Remote.RootPath}
mget *
quit
Deployment was ok, but execution failed with the following message:
---------------------------------------------------
Invalid command.
Invalid command.
Local directory now C:\pub.
Not connected.
Not connected.
open 22.1.217.53
one
one
lcd C:\pub
cd D:\sqlscript
mget *
quit
ftp: connect :unknown error number
---------------------------------------------------
The "open 22.1.217.53" command can't connect to FileZilla server either from the dos ftp prompt yielding message "connect :unknown error number".
Give me solution, please. Thanks.