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

2011-02-02 Thread Francois PIETTE
Any other suggestions. I tried everything I can think of Restart everuthing from scratch. First remove all files related to ICS from your harddisk, everywhere on your hard disk, including pas, dpr, dfm, dsk, cfg, res, dcu, dcp, and bpl files. Remove ICS packages from the IDE (components / inst

[twsocket] Error with SSLWSocketClient

2011-02-02 Thread daniel cc
Hello, I have received an error from my client on test, the error is, “Revocation information for the security certificate for this site is not available, do you want to proceed?” Please notice, I am using the demo/test certificates delicered with ICS component package because I am still doing a

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

2011-02-02 Thread Marc Hale
Any other suggestions. I tried everything I can think of -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 support mailing Subject: Re: [twsocket] Install ICS SSL Delphi 20

Re: [twsocket] Built-in timeout questions

2011-02-02 Thread Arno Garrels
Anton S. wrote: > 2Arno > >> Method DnsLookup doesn't require a custom timeout since the >> underlaying winsock function uses system's DNS lookup timeout. Same >> for Connect with or without DNS name. >> And if method Connect is called with a DNS name it performs a >> blocking DNS lookup while a B

Re: [twsocket] Built-in timeout questions

2011-02-02 Thread Angus Robertson - Magenta Systems Ltd
> Yes, this is blocking DNS lookup which I want to avoid. And I > dislike relying on OS timeouts, maybe it'll be 5 minutes long? There is nothing you can do to speed-up or stop the DNS or connection timeouts, they are specified in the registry. Even if you abort the component on a timer, you can

Re: [twsocket] Built-in timeout questions

2011-02-02 Thread Anton S.
2Arno >Method DnsLookup doesn't require a custom timeout since the underlaying >winsock function uses system's DNS lookup timeout. Same for Connect >with or without DNS name. >And if method Connect is called with a DNS name it performs a blocking >DNS lookup while a Built-In timeout won't trigger

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

2011-02-02 Thread Francois PIETTE
I was just wondering, creating a DLL in Delphi and use it as described in http://wiki.overbyte.be/wiki/index.php/FAQ._Microsoft_.NET_framework still works or? I guess it won't work anymore with current ICS-V7. -- francois.pie...@overbyte.be The author of the freeware multi-tier middleware Mi

Re: [twsocket] Built-in timeout questions

2011-02-02 Thread Arno Garrels
Anton S. wrote: > 1) In my descendant class I implement true asynchronous Connect with > asynchronous DNS lookup before connecting. Method DnsLookup doesn't require a custom timeout since the underlaying winsock function uses system's DNS lookup timeout. Same for Connect with or without DNS name

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

2011-02-02 Thread Fredrik Larsson
I was just wondering, creating a DLL in Delphi and use it as described in http://wiki.overbyte.be/wiki/index.php/FAQ._Microsoft_.NET_framework still works or? Regards, Fredrik -Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of Francois P

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

2011-02-02 Thread Francois PIETTE
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 made with no effort to keep it running because no one seems interested anymore in a .NET version. Ah, now things are clear. Very pity - lots o

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

2011-02-02 Thread Francois PIETTE
I probably have another stupid question : How do you know you have not SSL installed ? 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 USE_SSL is required in all projects using SSL and also in both packages (runtime and d

Re: [twsocket] Built-in timeout questions

2011-02-02 Thread Anton S.
Regarding accepted sockets: that's how I solved the problem for now: procedure TServer.TriggerClientConnect(Client: TWSocketClient; Error: Word); begin inherited; if Error <> 0 then Exit; with TSrvClient(Client) do begin TimeoutSampling := 1000; TimeoutConnect := InactiveTimeout;