Newsgroups : Borland : borland.public.delphi.internet.winsock : 2005 May : Trouble with https and INDY 9

www.cryer.info
Managed Newsgroup Archive

Trouble with https and INDY 9

Subject:Trouble with https and INDY 9
Posted by:"Dale Francis" (dfranc..@mortgagesoftware.to)
Date:Fri, 13 May 2005 10:45:59

Hello,

I am having trouble making an https call using INDY 9.  Consider the
following code snippet:

var
   ..
   ..
   HTTP           : TIdHTTP;   {INDY}
   sURL, sFile  : String;
begin
     ..
     ..
     sURL := 'https://website?params';
     HTTP := TIdHTTP.Create(nil);
{okay for non-SSL???}
     HTTP.IOHandler := TIdSSLIOHandlerSocket.Create(Nil);          {use for
SSL - Version 9}
     try
        sFannieFile := HTTP.Get(sURL);
        ..
        ..

The error I receive is:  "Could not load SSL library".

Is there something I am not doing or something that I am doing wrong?

Thanks,

Dale Francis

Replies:

www.cryer.info
Managed Newsgroup Archive