NetTalk Central

Author Topic: Error -73 SSL Could not load SSL DLLs  (Read 6216 times)

Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
Error -73 SSL Could not load SSL DLLs
« on: April 16, 2013, 05:35:17 PM »
I compiled my app in SSL mode -- copied the proper DLLs into the app folder, made certificate as required by docs, but still got no response from the server.  Compiled with Suppress Error Messages Unchecked and got the above error.  Is there something more that I need to do?

Thank you.

Jim

PS: It works fine on the dev. machine.  Only has issue when loaded to a another server.
« Last Edit: April 16, 2013, 05:43:11 PM by Jim A »

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: Error -73 SSL Could not load SSL DLLs
« Reply #1 on: April 16, 2013, 10:50:51 PM »
Hi Jim,

I'm guessing you don't have all the SSL DLL's you need. There are 4 of them, and they should be copied from your 3rdparty\bin or accessory\bin folder.

LIBSSL32.DLL, LIBEAY32.DLL SSLEAY32.DLL and MSVCR71.DLL

Cheers
Bruce


Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
Re: Error -73 SSL Could not load SSL DLLs
« Reply #2 on: April 17, 2013, 03:31:29 AM »
Hi Bruce:  All 4 are present and accounted for.  Date stamped as follows:

libeay32.dll 5/10/2012
libssl32.dll 5/10/2012
msvcr71.dll 2/21/2003
ssleay32.dll 5/10/2012

Thanks.

Larry Sand

  • Full Member
  • ***
  • Posts: 101
    • View Profile
Re: Error -73 SSL Could not load SSL DLLs
« Reply #3 on: April 17, 2013, 04:59:01 AM »
Check the dependencies of the dlls, the newer OpenSSL binaries require msvcr90.dll.  If that's the case you can install it using the MS VC 2008 redistributable package from: http://www.microsoft.com/en-us/download/details.aspx?id=29

Larry Sand

Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
Re: Error -73 SSL Could not load SSL DLLs
« Reply #4 on: April 17, 2013, 06:18:41 AM »
Thanks Larry. 
« Last Edit: April 17, 2013, 06:44:07 AM by Jim A »

Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
Re: Error -73 SSL Could not load SSL DLLs
« Reply #5 on: April 17, 2013, 09:07:01 AM »
Larry's recommendation worked. I can now log in from the browser on the remote machine (localhost) -- but cannot access over the internet. The IT guy insists that the secure port (chose 881) is open.  Not sure what to try next.  I have no trouble connecting as long as SSL is off.

Larry Sand

  • Full Member
  • ***
  • Posts: 101
    • View Profile
Re: Error -73 SSL Could not load SSL DLLs
« Reply #6 on: April 17, 2013, 11:08:48 AM »
Quote
The IT guy insists that the secure port (chose 881) is open.  Not sure what to try next.

Did they remember to forward that port to the correct machine?

BTW, I'll mention this here.   Do NOT redistribute the MSVCR90.DLL it's now considered a system dll and is installed as a SxS assembly.  A new kind of DLL hell.

Larry Sand

Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
Re: Error -73 SSL Could not load SSL DLLs
« Reply #7 on: April 17, 2013, 11:29:01 AM »
I think you are correct, Larry.  I compiled as SSL on port 5080 and it works.  They had opened 5080 for non-SSL during testing and port 881 for SSL.  881 doesn't work.

Thanks for your help.