Hello people,

I hope someone can help a newcomer with a problem.

Im using the Inet control with the icFTP-protocol to transfer a single file to an FTP-server. Works perfect with the following code:


Code:
with Inet1
.execute "FTP://[email protected] PUT "..........
end with
But my problem is i need to use passive transfers.. so i tried


Code:
with Inet1
.execute "FTP://[email protected] quote PASV"
.execute "FTP://[email protected] PUT "....................
end with
But it wont work.. how can i define this as a passive transfer?

Im really thankfull for answers with sollutions or ideas.