Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Netzwerke (https://www.delphipraxis.net/14-netzwerke/)
-   -   Delphi TClientSocket - FTP Problem (https://www.delphipraxis.net/26304-tclientsocket-ftp-problem.html)

Struwl 21. Jul 2004 19:01


TClientSocket - FTP Problem
 
Hi

Hab folgendes Problem:

Will zu einem FTP Server verbinden (das funktioniert auch) und z.B. die Dateien und Ordner auslesen - sprich mit LIST, falss ich mich nicht irre.
Nur irgendwie bekomm ich keine Antwort von dem Server.
Mit einem "normalen" FTP-Prog läuft es.

Nach dem Verbinden zum Server führe ich mit Hilfe eines Buttons folgenden Befehl aus:
Delphi-Quellcode:
const
  endl = #13#10;

..

Client.Socket.SendText('LIST'+endl);
Wenn ich das selbe mit dem Befehl 'NLIST' mache bekomme ich wenigstens eine Antwort vom Sever (ClientRead):
500 'NLIST': command not understood.

Bei HELP bekomme ich aber wiederum eine Antwort.

Was mache ich falsch ?

tia, Struwl

supermuckl 21. Jul 2004 19:06

Re: TClientSocket - FTP Problem
 
schau dir die FTP rfcs an

Struwl 22. Jul 2004 10:39

Re: TClientSocket - FTP Problem
 
Hab es nun etwas umgeändert ... geht aber immer noch nicht.

Delphi-Quellcode:
const
  endl = #13#10;

..

 Client.Socket.SendText('TYPE A'+endl);
 Client.Socket.SendText('PORT 192,168,0,12,12,237'+endl);
 Client.Socket.SendText('LIST /'+endl);

<ClientRead> 200 Type set to A.
<ClientRead> 200 PORT command successful.
<ClientRead> 425 Can't build data connection: Connection refused


edit:

Ok habs glaube ich fast.


Alle Zeitangaben in WEZ +1. Es ist jetzt 01:23 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz