Re: [twsocket] Two things in ICS (probably bug/potential bug)

2011-02-01 Thread Anton S.
Arno wrote: >The .NET code in V7 is unfinished work, it never compiled. Francois wrote: >Unfinished work, sure. But it worked at some point. And from trhat point >changes have been made with no effort to keep it running because no one >seems interested anymore in a .NET version. Ah, now things

[twsocket] Built-in timeout questions

2011-02-01 Thread Anton S.
Hello all, recently I've started migrating from my own timeout-featured TWSocket descendant towards the ICS built-in timeout. First of all, thanks to Arno for implementing this feature! Usage is quite simple and most of the questions could be answered by reading the code but some things are stil

Re: [twsocket] Install ICS SSL Delphi 2007 Problem NO SSL

2011-02-01 Thread Marc Hale
I removed the USE_SSL to make it do the SSL not matter what then I get ERRORS on all the TSSL* files undelcarded ident -Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of Francois PIETTE Sent: Tuesday, February 01, 2011 3:08 PM To: ICS sup

Re: [twsocket] Two things in ICS (probably bug/potential bug)

2011-02-01 Thread Francois PIETTE
It's not for .NET however for Delphi 7+ and BCB 2006+, what is the problem? Do you mean that ICS currently couldn't be compiled under .NET? The .NET code in V7 is unfinished work, it never compiled. Unfinished work, sure. But it worked at some point. And from trhat point changes have been ma

Re: [twsocket] Install ICS SSL Delphi 2007 Problem NO SSL

2011-02-01 Thread Francois PIETTE
I probably have another stupid question : How do you know you have not SSL installed ? Make sur you have only one OverbyteIcsD2007Run.bpl and one OverbyteIcsD2007Design.bpl file anywhere on your harddisk. You may also delete every file OverbyteIcs*.dcu anywhere on you harddisk. -- francois.pie..

Re: [twsocket] Two things in ICS (probably bug/potential bug)

2011-02-01 Thread Arno Garrels
Anton S. wrote: >> It's not for .NET however for Delphi 7+ and BCB 2006+, what is the >> problem? > Do you mean that ICS currently couldn't be compiled under .NET? The .NET code in V7 is unfinished work, it never compiled. > >> FHSocket actually is of type TSocket = u_int = Integer defined in >>

Re: [twsocket] TWSocketServer: client not removed from server list on disconnect

2011-02-01 Thread Fastream Technologies
Probably because it is automatic in C++(?) Regards, SZ On Tue, Feb 1, 2011 at 5:53 PM, Anton S. wrote: > Tobias, oh, thanks a lot! Today is the day when I use to forget to call > ancestors' methods :) > > -- > Anton > -- > To unsubscribe or change your settings for TWSocket mailing list > plea

Re: [twsocket] TWSocketServer: client not removed from server list on disconnect

2011-02-01 Thread Anton S.
Tobias, oh, thanks a lot! Today is the day when I use to forget to call ancestors' methods :) -- Anton -- 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] TWSocketServer: client not removed from server list on disconnect

2011-02-01 Thread Tobias Rapp
Hello Anton! > destructor TSrvClient.Destroy; > begin > FreeAndNil(FList); // *** set breakpoint here to ensure client is destroyed > *** > end; This should be: destructor TSrvClient.Destroy; begin FreeAndNil(FList); inherited; // <-- added call to ancestor end; Regards, Tobias -- To

[twsocket] TWSocketServer: client not removed from server list on disconnect

2011-02-01 Thread Anton S.
I faced strange issue when connected clients seem not to be removed from server's list on disconnect. I wrote simple demo project to test this, it'll be later. In short words, client objects seem to never be deleted from FClientList. I've set breakpoint on the line "FClientList.Remove(AComponent

Re: [twsocket] Two things in ICS (probably bug/potential bug)

2011-02-01 Thread Anton S.
>It's not for .NET however for Delphi 7+ and BCB 2006+, what is the >problem? Do you mean that ICS currently couldn't be compiled under .NET? >FHSocket actually is of type TSocket = u_int = Integer defined in >Winsock.pas, WPARAM and LPARAM are of type Integer defined in >Windows.pas, there is n

Re: [twsocket] Install ICS SSL Delphi 2007 Problem NO SSL

2011-02-01 Thread Marc Hale
It is version 7 I even re-download it from the site to make sure I had the latest version. If I install the same code on one of my machines its fine. But on my new machine it won't install the SSL. I even copied all the registry settings from my old machine for Delphi 2007 I even copied the same

Re: [twsocket] Two things in ICS (probably bug/potential bug)

2011-02-01 Thread Arno Garrels
Anton S. wrote: > I just downloaded recent version from SVN and found a strange define > in OverbyteIcsDefs.inc {$IFDEF CLR} > {$DEFINE BOMB} > {$ELSE} > {$IFNDEF COMPILER7_UP} >{$DEFINE BOMB} > {$ENDIF} > {$ENDIF} > It seems that it shouldn't really be CLR but old versions of BCB or > somet

[twsocket] Two things in ICS (probably bug/potential bug)

2011-02-01 Thread Anton S.
I just downloaded recent version from SVN and found a strange define in OverbyteIcsDefs.inc {$IFDEF CLR} {$DEFINE BOMB} {$ELSE} {$IFNDEF COMPILER7_UP} {$DEFINE BOMB} {$ENDIF} {$ENDIF} It seems that it shouldn't really be CLR but old versions of BCB or something else. And the second thi