scftpclient component demo

Discussion of open issues, suggestions and bugs regarding network security and data protection solution - SecureBridge
Post Reply
janoges
Posts: 2
Joined: Fri 11 Feb 2022 07:16

scftpclient component demo

Post by janoges » Mon 21 Feb 2022 10:57

Hello good morning I am new working with Securebridge components, I have been looking at the examples, but I see that for the use of scFTPClient Component does not come, only for the scSFTPClient, but I'm trying to create an automatic process that connects to FTP servers via port 21 and of course the example of scSFTPClient does not work for me.

I don't know if someone could help me or provide me with an example of how to use the scFTPclient component.

I have tried to contact the Support link from the Devart web page where you download the purchased components but that page or contact form gives 404 error and is not available.

Thank you very much for your help.

YanishevskiyVI
Devart Team
Posts: 70
Joined: Wed 02 Jun 2021 09:30

Re: scftpclient component demo

Post by YanishevskiyVI » Wed 23 Feb 2022 15:25

Hi there!

Thank you for choosing our components!

Please note that SFTP and FTP(S) are different and incompatible protocols, implemented in different components:
- SFTP: TScSFTPClient
- FTP(S): TScFTPClient

Typical usage scenario for TScFTPClient:

Code: Select all

var 
  ScFTPClient: TScFTPClient; //https://www.devart.com/sbridge/docs/tscftpclient.htm 
  
... 
with ScFTPClient do begin 
  //Setup 
  Username := 'Username'; 
  Password := 'Password'; 
  HostName := 'Hostname'; 
  UsePassive := true;//if required 
  EncryptDataChannel := true;//if required 
  Connect; 
  if ( Active ) then begin 
    Login; 
    //perform required actions: 
    // Upload(...); 
    // Dowload(...); 
  end; 
  Disconnect; 
end; 
 ... 

Feel free to ask in case of any further questions!

janoges
Posts: 2
Joined: Fri 11 Feb 2022 07:16

Re: scftpclient component demo

Post by janoges » Wed 23 Feb 2022 18:46

Hello thank you very much for your reply and partial code.
Yes indeed I know that they are different components, that's why I was asking for a demo project for a FTP client, similar to the one in the examples of the components with the scSFTPClient Client.
The idea is to see all the functionality of such components, as I have already seen with the demonstration project of the scSFTPClient component, so if it was not too much to ask I would like if you could send me a similar demonstration project but for the use of the scFTPClient component.

The truth is that I am quite new in this subject and it would be of a great help to me.

Thank you very much for your understanding and help.

Atte.

Jaime Galindo

Raudar
Devart Team
Posts: 19
Joined: Fri 02 Apr 2021 11:04

Re: scftpclient component demo

Post by Raudar » Tue 22 Mar 2022 16:09

Hi there,

Unfortunately, we do not have such a demo project but we are planning to add it in future, however we do not have any ETA yet.

You may also use TScFTPClient component using the instructions from the documentation:

https://www.devart.com/sbridge/docs/tscftpclient.htm

Best Regards,

Devart Support

Post Reply