Thema: Delphi FTP SSL/TSL List Problem

Einzelnen Beitrag anzeigen

Benutzerbild von Andidreas
Andidreas

Registriert seit: 27. Okt 2005
1.110 Beiträge
 
Delphi 10.1 Berlin Enterprise
 
#4

Re: FTP SSL/TSL List Problem

  Alt 5. Mär 2010, 10:41
also ich verwende die Indy 10

anbei die einstellungen für die TIdFTP komponente:

Delphi-Quellcode:
  FTP.Passive := True;

  FIdSSLHandler := TIdSSLIOHandlerSocketOpenSSL.Create;
  FIdSSLHandler.SSLOptions.Method := sslvSSLv23;
  FIdSSLHandler.SSLOptions.Mode := sslmClient;
  FIdSSLHandler.SSLOptions.VerifyMode := [];
  FIdSSLHandler.Port := 990;
  FIdSSLHandler.PassThrough := False;
  FIdSSLHandler.SSLOptions.CertFile := 'Certificate.crt';
  FIdSSLHandler.SSLOptions.VerifyDepth := 2;
  FTP.IOHandler := FIdSSLHandler;
  FTP.UseTLS := utUseImplicitTLS;
  FTP.AUTHCmd := tAuto;
  FTP.DataPortProtection := ftpdpsPrivate;
auch die folgende info hier aus dem forum habe ich berücksichtigt:
link
Ein Programmierer Programmiert durchschnittlich 15 Code Zeilen pro Tag
Wir sind hier doch nicht bei SAP!!!

Aber wir habens bald
  Mit Zitat antworten Zitat