E
Eric ST
Hi there,
I run a process that run ftp.exe -s [Ftp script file]
i get the StandardOutput this way :
ftpProgram = Process.Start(ftpProgram.StartInfo)
Output = ftpProgram.StandardOutput.ReadToEnd
ftpProgram.WaitForExit()
From my computer i get the output ok :
ftp> Connected to MyServer.
open MyServer
220-QTCP at MyServer.
220 Connection will close if idle more than 5 minutes.
User (MyServernone)):
331 Enter password.
230 MyUser logged on.
put "C:\Program Files\MyFile.txt "
200 PORT subcommand request successful.
250 File transfer completed successfully.
But when i run my application from another computer the output looks like that :
User (S7832273none)): open S7832273
put "C:\Program Files\MYFile.txt"
I don't get any server response when i run application from another workstation.
Note that i use the same ftp.exe file
Is this a windows setting ?
Anyone can help me ?
Thanks
I run a process that run ftp.exe -s [Ftp script file]
i get the StandardOutput this way :
ftpProgram = Process.Start(ftpProgram.StartInfo)
Output = ftpProgram.StandardOutput.ReadToEnd
ftpProgram.WaitForExit()
From my computer i get the output ok :
ftp> Connected to MyServer.
open MyServer
220-QTCP at MyServer.
220 Connection will close if idle more than 5 minutes.
User (MyServernone)):
331 Enter password.
230 MyUser logged on.
put "C:\Program Files\MyFile.txt "
200 PORT subcommand request successful.
250 File transfer completed successfully.
But when i run my application from another computer the output looks like that :
User (S7832273none)): open S7832273
put "C:\Program Files\MYFile.txt"
I don't get any server response when i run application from another workstation.
Note that i use the same ftp.exe file
Is this a windows setting ?
Anyone can help me ?
Thanks