in reply to Re^4: Changing from http call to https using SOAP::Lite
in thread Changing from http call to https using SOAP::Lite

This is not a Perl error but an error with the installation of your SSL libraries.

As you did not paste the exact error message like I requested, I cannot help you further in diagnosing at which part your SSL library installation is broken.

I suggest you talk to your system administrator or OS vendor on how to best fix this.

  • Comment on Re^5: Changing from http call to https using SOAP::Lite

Replies are listed 'Best First'.
Re^6: Changing from http call to https using SOAP::Lite
by allwynpoikavila (Initiate) on Mar 03, 2015 at 11:47 UTC
    here the code part is which calls the connection: use SOAP::Lite sub get_connection { my $soap=SOAP::Lite ->uri ($uri) ->proxy($servername, timeout=>1800); } //the servername is https site we pass from env file.
      ld.so.1:perl:fatal: relocation error :file /xx/xx... openSSL_add_all_a +lgorithms; referenced symbol not found

      This partial error message indicates that the SSL library in your OS installation was installed badly or is broken.

      This likely has very little to do with Perl, but I cannot diagnose that because you redacted the error message in a way that makes it impossible for me to divine the error cause. Have you tried Google for the error message, together with your brand of OS?

Re^6: Changing from http call to https using SOAP::Lite
by allwynpoikavila (Initiate) on Mar 03, 2015 at 10:24 UTC
    ok thanks, let me get the code part from my team , will post it in sometime later. thanks for help.