Graziano Posted October 12, 2011 Posted October 12, 2011 hi to all, i want manage a ftp connection to other server, how i can do that with unigui? thanks in advance...
andersa@ellenshoej.dk Posted October 12, 2011 Posted October 12, 2011 Not sure what it is you want to do? Do you want to list files on an ftp server and show them in an unigui window? I would put an ftp client component on the main module of your application. On the main form I would create an interface for the ftp client component, like host name to connect to, username, password, etc. After connection you can use a a listview/treeview to display the files on the server.
Graziano Posted October 12, 2011 Author Posted October 12, 2011 Not sure what it is you want to do? Do you want to list files on an ftp server and show them in an unigui window? I would put an ftp client component on the main module of your application. On the main form I would create an interface for the ftp client component, like host name to connect to, username, password, etc. After connection you can use a a listview/treeview to display the files on the server. hi anders and thank for the reply, i want connect to another ftp server and download some file (that file i have to import in my local db), i have think to connect with indy ftp component, it's only way to do? thanks in advance.
zilav Posted October 12, 2011 Posted October 12, 2011 i want connect to another ftp server and download some file (that file i have to import in my local db), i have think to connect with indy ftp component, it's only way to do? thanks in advance. 1. You can use any non-visual ftp library, just make sure that 2. it is thread-safe 3. you connect in FTP passive mode 4. your server allows outgoing connections, because 99% of ISPs and hosters restrict them.
ldb68 Posted October 13, 2011 Posted October 13, 2011 For client ftp connection whitout any problem I use "Clever Internet Suite". It's multithread and stable. bye hi anders and thank for the reply, i want connect to another ftp server and download some file (that file i have to import in my local db), i have think to connect with indy ftp component, it's only way to do? thanks in advance.
Graziano Posted October 13, 2011 Author Posted October 13, 2011 1. You can use any non-visual ftp library, just make sure that 2. it is thread-safe 3. you connect in FTP passive mode 4. your server allows outgoing connections, because 99% of ISPs and hosters restrict them. For client ftp connection whitout any problem I use "Clever Internet Suite". It's multithread and stable. bye thanks guys, i'll try the solution and report the results
Recommended Posts