Newsgroups : Borland : borland.public.delphi.internet.winsock : 2007 Dec : Re: idfTP and Socks problem
| Subject: | Re: idfTP and Socks problem |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Mon, 10 Dec 2007 14:58:10 |
"Richard" <ritchie872@yahoo.com> wrote in message
news:475db01f$1@newsgroups.borland.com...
> Worker.Host:= 'ftp://ftp.ubuntu.com';
That is not a valid way to specify a Host. Do not include the protocol
scheme prefix at all:
Worker.Host := 'ftp.ubuntu.com';
Gambit