[twsocket] [FTP] List over 2000 files

2008-11-28 Thread Guillaume ROQUES
Hi, I use the FTP component to get or put files and when I wanted to active it at my customer office there was over 8000 files to download. I've tried 2 methods : 1- I use the displayfileflag on true, I send a LS command and I get the filename in the event OnDisplayFile 2- I use the displayfile

[twsocket] What is the proper way to turn off sslv2 in TSslHttpServer and TSslContext?

2008-11-28 Thread Fastream Technologies
Please let all of us know as this is important for PCI DSS compliance. Best Regards, SZ -- 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] What is the proper way to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Fastream Technologies
Ok, that's what I assumed but the code below fails: HTTPSSLContext->SslOptions >> sslOpt_NO_SSLv2 >> sslOpt_NO_SSLv3 >> sslOpt_NO_TLSv1; if(!useSSLv2) HTTPSSLContext->SslOptions << sslOpt_NO_SSLv2; if(!useSSLv3) HTTPSSLContext->SslOptions << sslOpt_NO_SSLv3; if(!useTLSv1) HTTPSSLC

Re: [twsocket] [FTP] List over 2000 files

2008-11-28 Thread Francois Piette
I don't see any obvious reason for having none of the method you tryed to work ! -- [EMAIL PROTECTED] Author of ICS (Internet Component Suite, freeware) Author of MidWare (Multi-tier framework, freeware) http://www.overbyte.be - Original Message - From: "Guillaume ROQUES" <[EMAIL PROTECT

[twsocket] FRANCOIS--can you HAVE A LOOK? Re: What is the proper way to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Fastream Technologies
On Fri, Nov 28, 2008 at 1:54 PM, Fastream Technologies <[EMAIL PROTECTED]>wrote: > Ok, that's what I assumed but the code below fails: > > HTTPSSLContext->SslOptions >> sslOpt_NO_SSLv2 >> sslOpt_NO_SSLv3 >> > sslOpt_NO_TLSv1; > if(!useSSLv2) >HTTPSSLContext->SslOptions << sslOpt_NO_SSLv2;

Re: [twsocket] FRANCOIS--can you HAVE A LOOK? Re: What is the properway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Arno Garrels
Fastream Technologies wrote: > On Fri, Nov 28, 2008 at 1:54 PM, Fastream Technologies > <[EMAIL PROTECTED]>wrote: > >> Ok, that's what I assumed but the code below fails: The syntax in BCB should be: SslContext1->SslOptions = TSslOptions() << sslOpt_NO_SSLv2; In Delphi: SslContext1.SslOptions

Re: [twsocket] What is the proper way to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Arno Garrels
Fastream Technologies wrote: > Please let all of us know as this is important for PCI DSS compliance. Set SslVersionMethod of the SslContext to either sslV23_CLIENT or sslV23_Server and add sslOpt_NO_SSLv2 to the SslOptions. -- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.h

Re: [twsocket] FRANCOIS--can you HAVE A LOOK? Re: What is the properway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Fastream Technologies
SslContext1->SslOptions = TSslOptions() << sslOpt_NO_SSLv2; is the same as what I did, isn't it? I do not want to take the default values by using the, " = TSslOptions()" part. I just want to reset the values I am interested in with this line: SslContext->SslOptions >> sslOpt_NO_SSLv2 >> sslOpt_N

Re: [twsocket] FRANCOIS--can you HAVE A LOOK? Re: What is theproperway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Arno Garrels
Fastream Technologies wrote: > SslContext1->SslOptions = TSslOptions() << sslOpt_NO_SSLv2; > is the same as what I did, isn't it? I do not want to take the default > values by using the, > > " = TSslOptions()" part. I just want to reset the values I am > interested in with this line: Then the syn

[twsocket] V7 download

2008-11-28 Thread Paul
wher can I download the latest version for D2009 ? thanks, Paul -- 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] FRANCOIS--can you HAVE A LOOK? Re: What is theproperway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Fastream Technologies
They are both valid in C (mine and yours). Please try the Delphi demo and you will see the issue. Firefox has the capability to select protocols. Regards, SZ On Fri, Nov 28, 2008 at 4:13 PM, Arno Garrels <[EMAIL PROTECTED]> wrote: > Fastream Technologies wrote: > > SslContext1->SslOptions = TSs

Re: [twsocket] V7 download

2008-11-28 Thread Fastream Technologies
Hello, You need the TortoiseSVN freeware client and then need to access the ICS reprository for that. svn://svn.overbyte.be/ics/branches/icsv7 Best Regards, SZ On Fri, Nov 28, 2008 at 5:28 PM, Paul <[EMAIL PROTECTED]> wrote: > wher can I download the latest version for D2009 ? > > thanks, > > P

Re: [twsocket] SSL Versions (was: "encryption")

2008-11-28 Thread Arno Garrels
Fastream Technologies wrote: > Dear Steve, > > Not sure if it was an IE bug or a config error there, but, when I > enable just SSLv2 from IQRP and TLSv1 from Firefox, firefox cannot > display the page, If the server just supports SSLv2 and a client tries to establish a TLSv1 connection, that wo

Re: [twsocket] FRANCOIS--can you HAVE A LOOK? Re: What is the properway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Olivier Sannier
Fastream Technologies wrote: > SslContext1->SslOptions = TSslOptions() << sslOpt_NO_SSLv2; > is the same as what I did, isn't it? No it's not the same. What you did does not work as it does not call the setter for the property. The only way to have it work is the above. And the same goes for you

Re: [twsocket] FRANCOIS--can you HAVE A LOOK? Re: What is the properway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Fastream Technologies
It is rather strange that for the past 5 years this bug survived on our favorite compiler! :-( Thanks, SZ On Fri, Nov 28, 2008 at 6:16 PM, Olivier Sannier <[EMAIL PROTECTED]> wrote: > Fastream Technologies wrote: > > SslContext1->SslOptions = TSslOptions() << sslOpt_NO_SSLv2; > > is the same as

Re: [twsocket] FRANCOIS--can you HAVE A LOOK? Re: What is theproperway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Arno Garrels
Fastream Technologies wrote: > It is rather strange that for the past 5 years this bug survived on > our favorite compiler! :-( I never understood why people use a language which partly consist of just comments. -- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html > Thank

[twsocket] Possible BUG: Re: FRANCOIS--can you HAVE A LOOK? Re: What is theproperway to turn off sslv2 inTSslHttpServer and TSslContext?

2008-11-28 Thread Fastream Technologies
Sorry I don't understand what you said. Possible bug (?): When I disable all 3 protocols, I can access them with ANY of them--actually all enabled! See: http://www.fastream.net/beta/IQReverseProxy.exe Steps: - create a self-signed pem from SSL tabsheet - disable all of the checkboxes from the sam

Re: [twsocket] Possible BUG: Re: FRANCOIS--can you HAVE A LOOK? Re:What is theproperway to turn off sslv2 inTSslHttpServer andTSslContext?

2008-11-28 Thread Arno Garrels
Fastream Technologies wrote: > Sorry I don't understand what you said. > > Possible bug (?): When I disable all 3 protocols, I can access them > with ANY of them--actually all enabled! Not that I tried you application, but that's IMO a bug in your code. Since the code snippets you provided did no

Re: [twsocket] V7 download

2008-11-28 Thread Paul
I also need a username/password for that. Is there a standard username/password available ? Paul - Original Message - From: "Fastream Technologies" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, November 28, 2008 4:31 PM Subject: Re: [twsocket] V7 download > Hello, > >

Re: [twsocket] Possible BUG: Re: FRANCOIS--can you HAVE A LOOK? Re:What is theproperway to turn off sslv2 inTSslHttpServer andTSslContext?

2008-11-28 Thread Fastream Technologies
Of course I had modified as Olivier suggested before I asked for your feedback! Thanks, SZ On Fri, Nov 28, 2008 at 7:21 PM, Arno Garrels <[EMAIL PROTECTED]> wrote: > Fastream Technologies wrote: > > Sorry I don't understand what you said. > > > > Possible bug (?): When I disable all 3 protocols

Re: [twsocket] V7 download

2008-11-28 Thread Fastream Technologies
What about ics/ics ? We guys have read access with it and people like Arno and other TeamICS members have write access. On Fri, Nov 28, 2008 at 8:04 PM, Paul <[EMAIL PROTECTED]> wrote: > I also need a username/password for that. > Is there a standard username/password available ? > > Paul > > > >

Re: [twsocket] Multiple OnDataAvailable calls when no data to read

2008-11-28 Thread Arno Garrels
Anton Sviridov wrote: > Arno Garrels [TeamICS] wrote: >> AFAIK no, only if you do not read all available data OnDataAvailable >> will trigger again. > > Arno Garrels [TeamICS] wrote: >> Thus calling Receive multiple times >> in a loop in on DataAvailable would not work properly. > > *embarrassed*