Note that there are some explanatory texts on larger screens.

plurals
  1. POsecure ftp with indy / delphi -> file upload & download
    primarykey
    data
    text
    <p>I need to upload files to a secure ftp share, I only know the config data from FILE ZILLA Ftp client. Protocoll is SSH , secure FTP </p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8" standalone="yes" ?&gt; - &lt;FileZilla3&gt; - &lt;Servers&gt; - &lt;Server&gt; &lt;Host&gt;example.com&lt;/Host&gt; &lt;Port&gt;22&lt;/Port&gt; &lt;Protocol&gt;1&lt;/Protocol&gt; &lt;Type&gt;0&lt;/Type&gt; &lt;User&gt;Username-FTP&lt;/User&gt; &lt;Pass&gt;*************/Pass&gt; &lt;Logontype&gt;1&lt;/Logontype&gt; &lt;TimezoneOffset&gt;0&lt;/TimezoneOffset&gt; &lt;PasvMode&gt;MODE_DEFAULT&lt;/PasvMode&gt; &lt;MaximumMultipleConnections&gt;0&lt;/MaximumMultipleConnections&gt; &lt;EncodingType&gt;Auto&lt;/EncodingType&gt; &lt;BypassProxy&gt;0&lt;/BypassProxy&gt; &lt;Name&gt;Ftp_sharename&lt;/Name&gt; &lt;Comments /&gt; &lt;LocalDir /&gt; &lt;RemoteDir&gt;8 0 15 dsd_dir&lt;/RemoteDir&gt; &lt;SyncBrowsing&gt;0&lt;/SyncBrowsing&gt; Ftp_server_name &lt;/Server&gt; &lt;/Servers&gt; &lt;/FileZilla3&gt; </code></pre> <p>with code like </p> <pre><code> procedure TForm1.btnConnectClick(Sender: TObject); begin if IdFTP1.Connected then begin IdFtp1.Disconnect; btnConnect.Caption := 'Verbinden'; ListBox1.Clear; end else begin IdFTP1.Host := edHost.Text; IdFtp1.Username := edUser.Text; IdFtp1.Password := edPassword.Text; IdFtp1.Port := StrToINt(edport.Text); IdFtp1.Connect; end; end; </code></pre> <p>using INDY 10 - IdFTP1: TIdFTP; not much luck. Did not find any better compenent with my Delphi.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload