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

You have not shown us the error message and the relevant code to reproduce the error message.

If you need further assistance, please help us help you better and show us the exact error message you get, together with a short program that replicates the error.

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

Replies are listed 'Best First'.
Re^4: Changing from http call to https using SOAP::Lite
by allwynpoikavila (Initiate) on Mar 03, 2015 at 10:17 UTC
    error is something like below: "ld.so.1:perl:fatal: relocation error :file /xx/xx... openSSL_add_all_algorithms; referenced symbol not found" code is a simple get using (https://servername) proxy...using SOAP::Lite response method..if you need i can give you in sometime... but am not understanding the meaning of above error. we are using perl 5.8.6

      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.

        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.
        ok thanks, let me get the code part from my team , will post it in sometime later. thanks for help.