Re: [twsocket] FTPclient Error 426

2012-09-23 Thread Arno Garrels
Maria wrote: > In the program before we call DirectoryAsync we check to see if the > FTPClient is connected. If it is we call abort then quit. Abort followed by Quit is nonsens. Method Abort aborts the connection, command Quit however requires a connection in order to send the Quit-command to the

Re: [twsocket] FTPclient Error 426

2012-09-19 Thread Angus Robertson - Magenta Systems Ltd
> I really like the component. One question is there more detailed > help then the one online. Sorry, it has always been hard to find volunteers to document the ICS library, and in particular keep it updated for the constant changes we make. The developers all contribute their efforts free, and

Re: [twsocket] FTPclient Error 426

2012-09-19 Thread Maria
Message - From: "Angus Robertson - Magenta Systems Ltd" To: Sent: Wednesday, September 19, 2012 9:09 AM Subject: Re: [twsocket] FTPclient Error 426 When I copy the exe to another computer Window's XP every FTP server (8 different servers) we connect to gives an ErrCo

Re: [twsocket] FTPclient Error 426

2012-09-19 Thread Angus Robertson - Magenta Systems Ltd
> When I copy the exe to another computer Window's XP every FTP > server (8 different servers) we connect to gives an ErrCode = 426 > with a message "Operation Aborted". When FTP fails to run on a specific computer, it's nearly always configuration of that computer, usually a firewall or router

[twsocket] FTPclient Error 426

2012-09-18 Thread Maria
I just registered my email address. Below is the question I posted earlier. Hello Everyone, I have fully implemented the FTPClient on my development station and we can connect and poll files from 8 different FTP servers successfully. When I copy the exe to another computer Window's XP every FTP

Re: [twsocket] FTPClient Localfilename

2011-06-11 Thread Francois PIETTE
How I can download a file in memory instead on disk using the command GET ? Use a TMemoryStream instance and assign it to LocalStream property -- francois.pie...@overbyte.be The author of the freeware multi-tier middleware MidWare The author of the freeware Internet Component Suite (ICS) http:/

[twsocket] FTPClient Localfilename

2011-06-11 Thread Robert
Hello, How I can download a file in memory instead on disk using the command GET ? Tks in advance Robert -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] FTPClient Put problem

2008-02-27 Thread Francois PIETTE
> In case of upload with FTPClient the upload is slow. Pay attention to progress bar or similar GUI gadget. If not programmed correctly, they could slow down transfer a lot. Also, try running the FTP component in a worker thread, maybe with a priority set to something higher than the main trhrea

Re: [twsocket] FTPClient Put problem

2008-02-27 Thread Tobias Rapp
Fias Norbert István wrote: > The problem is that Indy sends a large amount TCP segments as the > received window increasing and as no drop occured while ICS FTP > client does not increase the number of sent segments, so the > unacknowledged amount of bytes is not increasing. I have experienced sim

Re: [twsocket] FTPClient Put problem

2008-02-27 Thread Arno Garrels
x27;); > Exit; > end; > > msg := Format('Send buffer Size> %d', [SndBufSize]); > //addition ends > > I increased the send buffer to 40k. Of course it works only during > active connections. it does not help. > > > > -Original

Re: [twsocket] FTPClient Put problem

2008-02-27 Thread Fias Norbert István
tions. it does not help. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arno Garrels Sent: Wednesday, February 27, 2008 12:16 PM To: ICS support mailing Subject: Re: [twsocket] FTPClient Put problem I once tested uploading a 2 GB file at 44 Mbits/s in a 100

Re: [twsocket] FTPClient Put problem

2008-02-27 Thread Arno Garrels
I once tested uploading a 2 GB file at 44 Mbits/s in a 100 Mbit/s LAN. Write ahead cache was disabled at the Server's HDD and the the disk seemed rather busy, the HDD was probably the bottleneck that avoided higher speeds. Make sure you do not have any anti-virus software or a personal Firewall r

Re: [twsocket] FTPClient Put problem

2008-02-27 Thread Fastream Technologies
Hello, I think increasing the buffer size to 16kB would solve the issue. Regards, SZ On 2/27/08, Fias Norbert István <[EMAIL PROTECTED]> wrote: > > Honestly I did not find the answer for my following question int he > archieves, buti t can be I missed something. > > I have the following proble

[twsocket] FTPClient Put problem

2008-02-27 Thread Fias Norbert István
Honestly I did not find the answer for my following question int he archieves, buti t can be I missed something. I have the following problem In case of upload with FTPClient the upload is slow. It seems that the client does not send enough fast the TCP segments. I mean it is waiting for the pr

Re: [twsocket] FTPClient ftpdir.txt

2007-11-22 Thread Angus Robertson - Magenta Systems Ltd
> I've need the complete time of files of server directory to do a > synchronization between client and server. But when I open the > ftpdir.txt (after a DIR command), I have'nt complete time: I've got > hour, minutes bur not seconds. You should use the MLSD command, this returns directory listi

Re: [twsocket] FTPClient ftpdir.txt

2007-11-22 Thread Arnold FLUTEAUX
The server is an ICS FTP Server on windows XP. On Nov 22, 2007, at 11:49, Arnold FLUTEAUX wrote: > Hi, > > I've need the complete time of files of server directory to do a > synchronization between client and server. But when I open the > ftpdir.txt > (after a DIR command), I have'nt comple

Re: [twsocket] FTPClient ftpdir.txt

2007-11-22 Thread DZ-Jay
On Nov 22, 2007, at 11:49, Arnold FLUTEAUX wrote: > Hi, > > I've need the complete time of files of server directory to do a > synchronization between client and server. But when I open the > ftpdir.txt > (after a DIR command), I have'nt complete time: I've got hour, minutes > bur > not seconds.

[twsocket] FTPClient ftpdir.txt

2007-11-22 Thread Arnold FLUTEAUX
Hi, I've need the complete time of files of server directory to do a synchronization between client and server. But when I open the ftpdir.txt (after a DIR command), I have'nt complete time: I've got hour, minutes bur not seconds. So Is it a way to get this or have I to use MTDM for each file of d

Re: [twsocket] FTPClient : CHMOD

2007-07-24 Thread Francois Piette
> How to do with FTPClient a CHMOD command? Use TFtpCli.Quote method to send any non standard command to the server. Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] Author of ICS (Internet Component Suite, freeware) Author of MidWare (Multi-tier frame

[twsocket] FTPClient : CHMOD

2007-07-24 Thread patrice . dumas
Hi, How to do with FTPClient a CHMOD command? Thanks, Patrice. -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] FTPClient specifying a port other than 21...

2007-03-01 Thread Arno Garrels
[EMAIL PROTECTED] wrote: > Thanks for the previous posts. I guess the bottom line is, does > FTPClient work with other ports besides port 21 for the version last > revised: Apr 18, 2003. I am currently using Delphi 3? Please read this: http://www.ncftp.com/ncftpd/doc/misc/ftp_and_firewalls.htm

[twsocket] FTPClient specifying a port other than 21...

2007-03-01 Thread [EMAIL PROTECTED]
Thanks for the previous posts. I guess the bottom line is, does FTPClient work with other ports besides port 21 for the version last revised: Apr 18, 2003. I am currently using Delphi 3? I have tried specifying other ports but receive the message 10060 on a file transmit as previously report

Re: [twsocket] FTPClient Upload/download size incorrect?

2007-01-13 Thread Chris Roller
Thanks, that worked. I feel silly. > -Original Message- > From: Arno Garrels [mailto:[EMAIL PROTECTED] > Sent: Saturday, January 13, 2007 13:43 > To: ICS support mailing > Subject: Re: [twsocket] FTPClient Upload/download size incorrect? > > Chris Roller wrote: &

Re: [twsocket] FTPClient Upload/download size incorrect?

2007-01-13 Thread Arno Garrels
byte.be/eng/overbyte/teamics.html > >> -Original Message- >> From: Dod [mailto:[EMAIL PROTECTED] >> Sent: Saturday, January 13, 2007 04:02 >> To: ICS support mailing >> Subject: Re: [twsocket] FTPClient Upload/download size incorrect? >> >> Hello,

Re: [twsocket] FTPClient Upload/download size incorrect?

2007-01-13 Thread Dod
sn't matter. CR> It is Unix. Is there a TFTPClient setting to fix this, or do I simply CR> convert #10s into #13#10s? >> -Original Message- >> From: Dod [mailto:[EMAIL PROTECTED] >> Sent: Saturday, January 13, 2007 04:02 >> To: ICS support mailing >

Re: [twsocket] FTPClient Upload/download size incorrect?

2007-01-13 Thread Chris Roller
; From: Dod [mailto:[EMAIL PROTECTED] > Sent: Saturday, January 13, 2007 04:02 > To: ICS support mailing > Subject: Re: [twsocket] FTPClient Upload/download size incorrect? > > Hello, > > Is it text file or binary file ? > > If text file be sure to set binary mode, if no

Re: [twsocket] FTPClient Upload/download size incorrect?

2007-01-13 Thread Dod
Hello, Is it text file or binary file ? If text file be sure to set binary mode, if not all #13#10 may be converted into #10 if destination is Unix system so each text line will loose 1 byte. regards. CR> Using FtpTst demo, I upload a file from c:\dir, size 61,184. After upload, CR> "

Re: [twsocket] FTPClient Upload/download size incorrect?

2007-01-13 Thread Arno Garrels
Chris Roller wrote: > Using FtpTst demo, I upload a file from c:\dir, size 61,184. After > upload, "size" indicates 60995. Download the same file, size is > 61,440. > > Anybody know what's going on? I need the sizes to be same on > upload/download. Are you using current beta downloads either

[twsocket] FTPClient Upload/download size incorrect?

2007-01-12 Thread Chris Roller
Using FtpTst demo, I upload a file from c:\dir, size 61,184. After upload, "size" indicates 60995. Download the same file, size is 61,440. Anybody know what's going on? I need the sizes to be same on upload/download. -- To unsubscribe or change your settings for TWSocket mailing list please

[twsocket] FTPClient and strange behaviour

2006-07-05 Thread Markus Humm
>>> If authentication is required to issue a command the server should >>> send an error code, typically 530. >> Okay, will pay attention to it. Is there any short overview of the >> FTP-protocols available? Afaik the RFCs are a bit longish I fear. > > RFCs are the standards, there's no way aroun

Re: [twsocket] FTPClient and strange behaviour

2006-07-04 Thread Arno Garrels
Markus Humm wrote: >> If authentication is required to issue a command the server should >> send an error code, typically 530. > > Okay, will pay attention to it. Is there any short overview of the > FTP-protocols available? Afaik the RFCs are a bit longish I fear. RFCs are the standards, there'

[twsocket] FTPClient and strange behaviour

2006-07-04 Thread Markus Humm
Hello, > Markus Humm wrote: >> I've tried the FTPTst Application right now and found out that a PASS >> is required after a open, it will delete the file then. But why >> didn't the server tell me in my program and always claimed to have >> carried out my delete request? > > If authentication is

Re: [twsocket] FTPClient and strange behaviour

2006-07-03 Thread Arno Garrels
Markus Humm wrote: > > I've tried the FTPTst Application right now and found out that a PASS > is required after a open, it will delete the file then. But why > didn't the server tell me in my program and always claimed to have > carried out my delete request? If authentication is required to iss

[twsocket] FTPClient and strange behaviour

2006-07-03 Thread Markus Humm
> Message: 3 > Date: Sun, 2 Jul 2006 21:38:06 +0200 > From: "Arno Garrels" <[EMAIL PROTECTED]> > Subject: Re: [twsocket] FTPClient and strange behaviour > To: "ICS support mailing" > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/p

Re: [twsocket] FTPClient and strange behaviour

2006-07-02 Thread Arno Garrels
Markus Humm wrote: > When I try to delete the file I want to send first from the FTP server > it always says it has been deleted, but the file is still in the > directory of the server?! What's happening there? The statuscode sent > back by the server is 250. > > When I try to send my file to the

[twsocket] FTPClient and strange behaviour

2006-07-02 Thread Markus Humm
Hello, I'm using D2006, ICS 5 (from the Partner DVD) and Windows XP professional with a lightwight FTP-Server. I'm writing some application which is to be used to maintain a website later and for this a html-file is created on the local PC and should be transferred to the webserver using FTP. I

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
on.htm >>> >>> >>> >>> --- >>> >>> Arno Garrels [TeamICS] >>> >>> http://www.overbyte.be/eng/overbyte/teamics.html >>> >>> >>> >>> >>> >>> >>> >>

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Francois PIETTE
- From: "Richard (Delphi)" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Tuesday, May 30, 2006 6:33 PM Subject: Re: [twsocket] FTPClient problem w. large files in D7 > in delphi 5 it works fine, but in delphi 7 i get the > error. is this ´not the sam

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
in delphi 5 it works fine, but in delphi 7 i get the error. is this ´not the same code? (stream.pas)?? richard "Angus Robertson - Magenta Systems Ltd" <[EMAIL PROTECTED]> schrieb: > > > Very strange that error never came up when I added 64-bit support > > > to the FTP client 6 month ago, I know

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Angus Robertson - Magenta Systems Ltd
> > Very strange that error never came up when I added 64-bit support > > to the FTP client 6 month ago, I know I successfully tested DVD > > image files larger than 2 gigs. > > Is it possible that you tested the upload only? I would have testing both upload and download, but I was also testing

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: >> If it is this line "FReadCount := FReadCount + Result;" it's >> clear. FReadCount is just an integer. Instead it should be >> defined as Int64 in newer compilers. > > Very strange that error never came up when I added 64-bit support to > the FTP clie

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Angus Robertson - Magenta Systems Ltd
> If it is this line "FReadCount := FReadCount + Result;" it's > clear. FReadCount is just an integer. Instead it should be > defined as Int64 in newer compilers. Very strange that error never came up when I added 64-bit support to the FTP client 6 month ago, I know I successfully tested DVD ima

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Sorry, exchange {$END} by {$ENDIF}, the beer was too good yesterday 8-( bAllSent: Boolean; {$IFDEF COMPILER4_UP} FReadCount : Int64; {$ELSE} FReadCount : LongInt; {$ENDIF} FPaused : Boolean; And ~ Line 988: property AllSent : Boo

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Delphi wrote: > Hello Arno Garrels > > i get the exception EIntOverflow >> in Line 3842 in ..\vcl32\wsocket.pas If it is this line "FReadCount := FReadCount + Result;" it's clear. FReadCount is just an integer. Instead it should be defined as Int64 in newer compilers. If CBuilder 4 supports Int6

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
Hello Arno Garrels i get the exception EIntOverflow > in Line 3842 in ..\vcl32\wsocket.pas > Richard Arno Garrels wrote:: > Richard (Delphi) wrote: > > >> After 2GB the client hang (overflow integer) >> why doesn't work the in64-version of the functions in >> D7 ? >> > > Please po

Re: [twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Arno Garrels
Richard (Delphi) wrote: > After 2GB the client hang (overflow integer) > why doesn't work the in64-version of the functions in > D7 ? Please post the line number where the exception is being raised. If you don't run the application in the IDE you can compile a debug-version using MadExcept http:

[twsocket] FTPClient problem w. large files in D7

2006-05-30 Thread Delphi
Hello, i have installed the ics width Delphi7 i would download with the ftp-client a large file (6GByte). After 2GB the client hang (overflow integer) why doesn't work the in64-version of the functions in D7 ? in Delphi 5 the ftp-client works with get fine a download 6 GByte. Best regards Rich

Re: [twsocket] FTPClient ASCII or Binary ?

2005-12-17 Thread Francois PIETTE
> Presumably the old FTP server defaulted to binary whereas this one > defaults to ASCII. FTP standard says ascii is default for everybody ! -- Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe or change your

Re: [twsocket] FTPClient ASCII or Binary ?

2005-12-16 Thread David Rose
> Try removing the if not (FTPClient1.Binary) then line. It could > already be binary in the component but the typeset command may not have > been issued before. Wonderful. That's exactly what the problem was. Code been working for years, then we changed FTP server and it stopped working. Pres

Re: [twsocket] FTPClient ASCII or Binary ?

2005-12-15 Thread Fastream Technologies
6, 2005 12:26 AM Subject: [twsocket] FTPClient ASCII or Binary ? > Is there something wrong with the code below. As far as I understand it > should be uploading in binary mode, but the > FTP conversation looks like it's in ASCII mode, though the (23MB) file > does seem to upload cor

[twsocket] FTPClient ASCII or Binary ?

2005-12-15 Thread David Rose
Is there something wrong with the code below. As far as I understand it should be uploading in binary mode, but the FTP conversation looks like it's in ASCII mode, though the (23MB) file does seem to upload correctly. If I try something like FTPexplorer then the FTP log does show "Opening BINARY

Re: [twsocket] FTPClient not ready

2005-11-22 Thread Francois PIETTE
PM Subject: [twsocket] FTPClient not ready > hi All, > In my application i have 3 TTimer compents that on interval > time send ftp command > with TFtpClient components. I control this > procedure on OnRequest event but the component say "FTPclient not > ready"; > how ma

[twsocket] FTPClient not ready

2005-11-22 Thread [EMAIL PROTECTED]
hi All, In my application i have 3 TTimer compents that on interval time send ftp command with TFtpClient components. I control this procedure on OnRequest event but the component say "FTPclient not ready"; how make to control this event, why ? Thank in advanced. Marco. Italy -- To unsubscribe

Re: [twsocket] FTPClient speeds

2005-09-04 Thread Piotr Dałek
Hello! >> I wrote a write-buffering stream. Anyone interested? Adding read and seek >> support and extending it so it can write to other streams shouldn't be >> difficult. >> > I thought windows buffered writes anyway? Is this so you can have a > larger > buffer or something completely different

Re: [twsocket] FTPClient speeds

2005-09-01 Thread Dan
- Original Message - From: "Piotr Dalek" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, September 01, 2005 6:52 PM Subject: Re: [twsocket] FTPClient speeds > Hello! > > I wrote a write-buffering stream. Anyone interested? Adding read

Re: [twsocket] FTPClient speeds

2005-09-01 Thread Piotr Dałek
Hello! >> I could but...don't remember where is my stop-time watch I just bought >> around the corner to make it pause life-time for next 10 years :-) > However, most high level components would benefit from such a buffered > stream, > highly efficient, and don't forget "I am programming, therefo

Re: [twsocket] FTPClient speeds

2005-08-30 Thread Arno Garrels
Dod wrote: > Hello Arno, > > I could but...don't remember where is my stop-time watch I just bought > around the corner to make it pause life-time for next 10 years :-) However, most high level components would benefit from such a buffered stream, highly efficient, and don't forget "I am programm

Re: [twsocket] FTPClient speeds

2005-08-30 Thread Dod
Hello Arno, I could but...don't remember where is my stop-time watch I just bought around the corner to make it pause life-time for next 10 years :-) AG> Dod wrote: >> Also remember that if you use xDSL connection your upload bandwidth >> much smaller than download one. AG> Yes I know, I was

Re: [twsocket] FTPClient speeds

2005-08-30 Thread Arno Garrels
Dod wrote: > Also remember that if you use xDSL connection your upload bandwidth > much smaller than download one. Yes I know, I was just wondering whether file caching can make such a big difference. BTW: I already suggested last year to write/implement a tiny buffered stream class, that woul

Re: [twsocket] FTPClient speeds

2005-08-30 Thread Dod
Also remember that if you use xDSL connection your upload bandwidth much smaller than download one. >> Is GET faster than PUT? >> In my tests GET performs seven times faster than PUT. FP> Considering the transport, there is no reason to have a speed difference. >> Server caches files, is that

Re: [twsocket] FTPClient speeds

2005-08-29 Thread Angus Robertson - Magenta Systems Ltd
> Is GET faster than PUT? > In my tests GET performs seven times faster than PUT. > Server caches files, is that the reason? Yes, reading a file will always be much faster than writing one, particularly on a heavily loaded web server where much of the content is coming from memory, and stuff is

Re: [twsocket] FTPClient speeds

2005-08-29 Thread Francois PIETTE
> Is GET faster than PUT? > In my tests GET performs seven times faster than PUT. Considering the transport, there is no reason to have a speed difference. > Server caches files, is that the reason? That helps have high performance. -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe

[twsocket] FTPClient speeds

2005-08-29 Thread Arno Garrels
Is GET faster than PUT? In my tests GET performs seven times faster than PUT. Server caches files, is that the reason? Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overb

Re: [twsocket] FTPClient not ready

2005-07-20 Thread Francois Piette
> in my delphi application i use the TFtpClient with timer that on interval > retrieve file from my ftp server. My first time ftpclient works, but another > time > stop it generate "FTP Component not ready", Why ? Because you ask the component to do an operation while the previous one is stil

[twsocket] FTPClient not ready

2005-07-20 Thread bimbospank
Hi All, in my delphi application i use the TFtpClient with timer that on interval retrieve file from my ftp server. My first time ftpclient works, but another time stop it generate "FTP Component not ready", Why ? How do i control this situation ? Thanks a lot in advanced for answer. Spank-Ita

Re: [twsocket] FTPClient

2005-06-28 Thread Carlos Lalín
Thank you very much. He have found the problem. The servername was incorrect. Regards. - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, June 27, 2005 6:35 PM Subject: Re: [twsocket] FTPClient > Carlos La

Re: [twsocket] FTPClient

2005-06-27 Thread Arno Garrels
t;[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Monday, June 27, 2005 5:00 PM > Subject: Re: [twsocket] FTPClient > > >> What happens when you try this? >> >>> The code is: >>> FtpClient1.HostName := servername; &g

Re: [twsocket] FTPClient

2005-06-27 Thread Carlos Lalín
ver requires login, I have used the configuration that they give me. In a program FTP, it connects find and it shows all files. - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, June 27, 2005 5:00 PM Subject: Re: [twsocket]

Re: [twsocket] FTPClient

2005-06-27 Thread Arno Garrels
i:=0 to lista.Count-1 do begin > memo1.lines.add('Fichero ' + lista[i]); > end; > FtpClient1.Quit; > > --> lista has 0 elements. > > Regards. > > - Original Message - > From: "Arno Garrels" <[EMAIL PROTECTED]> &

Re: [twsocket] FTPClient

2005-06-27 Thread Carlos Lalín
+ lista[i]); end; FtpClient1.Quit; --> lista has 0 elements. Regards. - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, June 27, 2005 2:17 PM Subject: Re: [twsocket] FTPClient > Carlos Lalín wrote:

Re: [twsocket] FTPClient

2005-06-27 Thread Arno Garrels
t; <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Monday, June 27, 2005 1:18 PM > Subject: Re: [twsocket] FTPClient > > >> Carlos Lalín wrote: >>> After doing Ls, the file is empty >> I don't think it's possible *if the remote dir

Re: [twsocket] FTPClient

2005-06-27 Thread Carlos Lalín
I'm sorry but this is like that. The files are there but the file is empty. The conection doesn't produce error. Carlos. - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, June 27, 2005 1:18

Re: [twsocket] FTPClient

2005-06-27 Thread Arno Garrels
Carlos Lalín wrote: > After doing Ls, the file is empty I don't think it's possible *if the remote directory was not empty. You *may get an error in OnRequestDone if it was empty and file listing was therefore not sent. Arno Garrels Carlos Lalín wrote: > Hello, > I use the component FTPCliente

[twsocket] FTPClient

2005-06-27 Thread Carlos Lalín
Hello, I use the component FTPCliente to download files from a server. I indicate the name of the file where appear the name of the files to download. After doing Ls, the file is empty when with another program FTP I see that there are files. To what can it owe? Thank you. Regards. Carlos. --

Re: [twsocket] [FTPClient] Rename File

2005-05-19 Thread Artem Antonov
On Thu, 19 May 2005 13:50:53 +0400 "Artem Antonov" <[EMAIL PROTECTED]> wrote: Hello, how I can rename file, i.e. where I should set _old_ and _new_ file names? Thanks. I have done it already. Thanks. Best regards, Artem Antonov. -- To unsubscribe or change your settings for TWSocket mailing list

[twsocket] [FTPClient] Rename File

2005-05-19 Thread Artem Antonov
Hello, how I can rename file, i.e. where I should set _old_ and _new_ file names? Thanks. Best regards, Artem Antonov. -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] FTPClient UNIX-Server - How to setup binary mode? - isthis the right way?

2005-03-29 Thread Arno Garrels
Mice Cage wrote: > I know now that I have to use the Typeset-Command. > I hope I placed it now at the right place: ftpclient1.cwd; {>}FtpClient1.TypeSet; Yes. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listi

[twsocket] FTPClient UNIX-Server - How to setup binary mode? - is this the right way?

2005-03-29 Thread Mice Cage
I know now that I have to use the Typeset-Command. I hope I placed it now at the right place: FtpClient1.HostName := HostNameEdit.Text; FtpClient1.Port := PortEdit.Text; FtpClient1.UserName := UserNameEdit.Text; FtpClient1.Password := P

Re: [twsocket] FTPClient Get-Command-Problem on UNIX-Server

2005-03-28 Thread Francois Piette
> If I download a file on a NT-Server all is OK. Downloaded filesize is the > same as on the server. On the Unix-Server I got problems. > FTPClient say me via filesize that the file has 1500 Bytes. > If I use the FTPClient I got 15054856 bytes on my HDD. This is usually caused by a wrong trans

[twsocket] FTPClient Get-Command-Problem on UNIX-Server

2005-03-28 Thread Mice Carg
I have a problem with the FTPClient-Module. I'm using the latest Version of ICS. >> Revised: Mar 13, 2005 Now here is my Problem: If I download a file on a NT-Server all is OK. Downloaded filesize is the same as on the server. On the Unix-Server I got problems. FTPClient say me via filesize th