[twsocket] Protocol 6 (=TCP) not supported by TCustomSocksWSocket

2005-06-17 Thread Piotr Hellrayzer Dałek
Hi! In TCustomSocksWSocket.Connect: procedure TCustomSocksWSocket.Connect; begin [..] if LowerCase(FProtoStr) <> 'tcp' then begin RaiseException('tcp is the only protocol supported thru socks server'); Exit; end; [..] Let's say that someone has entered 6 in place of TCP

Re: [twsocket] RETR . On ftpServer

2005-06-17 Thread gates
>> In fact, their AS400 program launch "RETR ." command and they get all >> files which in the current directory. and with IIS, it's OK > > This behaviour is not defined in the FTP standard. > To get all files, you must first use the list function to get the file > list and then iterate thru the li

Re: [twsocket] RETR . On ftpServer

2005-06-17 Thread Francois Piette
> In fact, their AS400 program launch "RETR ." command and they get > all files which in the current directory. and with IIS, it's OK This behaviour is not defined in the FTP standard. To get all files, you must first use the list function to get the file list and then iterate thru the list. This

[twsocket] RETR . On ftpServer

2005-06-17 Thread Arnold FLUTEAUX
In fact, their AS400 program launch "RETR ." command and they get all files which in the current directory. and with IIS, it's OK but it's not with my program. I receive NLST command and then I receive "RETR ." command. It's really curious because it's the same client program. But I will know more