[AWS] AWS.Client HTTPS connections
BenjaminC.Place
BenjaminC.Place
Sun, 23 Nov 2003 02:45:25 -0500
Hello,
Making this call in my code:
AWS.Client.Get ("https://my_secure_website");
gives me this at the console:
------------------------------------------------------------------------
---
ben@localhost src 02:31am $ ./my_app
raised AWS.CLIENT.CONNECTION_ERROR : can't connect to
https://my_secure_website -> Exception name: AWS.NET.SOCKET_ERROR
Message: error:140BA0C3:SSL routines:SSL_new:null ssl
------------------------------------------------------------------------
---
I'm trying to have my code open a client HTTPS connection to a valid
server. The code above works fine as with an insecure site
AWS.Client.Get ("http://my_website");
Do I need to initialize the SSL code somewhere? The docs imply that no
initialization is needed for client-side HTTPS connections. Is this the
right conclusion? Did I make a mistake while building the AWS libs?
Thanks for your help,
Ben