Newsgroups : Borland : borland.public.delphi.internet.winsock : 2007 Feb : Re: idhttpserver check if ssl is set
| Subject: | Re: idhttpserver check if ssl is set |
| Posted by: | "API" (ari.pikivir..@kolumbus.fi) |
| Date: | Tue, 27 Feb 2007 22:25:27 |
Thanks again, this solved the issue I was having with the detection.
One more problem left before I can say finally that the migration
from 9 to 10 is over;
It seems like the application closed correctly but it rises exception
after everything I've created is closed and freed I can play with
the activate true/false forever while the application is running normally.
Could this be some sort of SSL library issue (dll)?
"Remy Lebeau (TeamB)" <no.spam@no.spam.com> wrote in message
news:45e478c1$1@newsgroups.borland.com...
>
> with AContext.Connection do
> begin
> if (IOHandler is TIdSSLIOHandlerSocketBase) and (not
> TIdSSLIOHandlerSocketBase(IOHandler).PassThrough) then
> // SSL is active
> end;
>
> Gambit