in reply to soap request force ssl connection

site:perlmonks.org LWP ssl3 -> mechanize and sslv3 -> Re^3: mechanize and sslv3

Replies are listed 'Best First'.
Re^2: soap request force ssl connection
by aktinide (Initiate) on May 14, 2015 at 13:13 UTC

    setting ssl_opts => { SSL_version => 'SSLv3'} results in :

    DEBUG: .../IO/Socket/SSL.pm:1780: SSL Version SSLv3 not supported

    therefore my assumption is there is just no ssl communicaton at this point in time. SSL_version in the Perl Module somehow has different effect than -ssl3 flag to openssl s_client

      ... SSL Version SSLv3 not supported
      That means that the OpenSSL library used by Perl (Net::SSLeay) is compiled without SSLv3 support. Looks like latest Strawberry Perl comes with OpenSSL 1.02 and disabled SSLv3 support. This means you will not be able to use SSLv3 with this Perl.
      SSL_version in the Perl Module somehow has different effect than -ssl3 flag to openssl s_client
      No, it should not. Apart from that the server looks fairly broken to me, i.e. only support for SSLv3 and no support for SSLv23 handshake.