in reply to Re: soap request force ssl connection
in thread soap request force ssl connection

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

Replies are listed 'Best First'.
Re^3: soap request force ssl connection
by noxxi (Pilgrim) on May 14, 2015 at 19:12 UTC
    ... 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.
Re^3: soap request force ssl connection
by Anonymous Monk on May 14, 2015 at 23:44 UTC