"Ferrari, Nelson" <[EMAIL PROTECTED]> writes:

> If I run:
> perl -MNet::SSLeay -I Library -e 'print
> Net::SSLeay::get_https("www.quickcommerce.net", 443,
> "/scripts/qc25/merchantlogin.asp")'
> 
> I get:
> 
> SSL_write 9396: 1 - error:1409E0E5:SSL routines:SSL3_WRITE_BYTES:ssl
> handshake failure
> HTTP/1.0 900 NET OR SSL ERROR
> 
> SSL_write 9396: 1 - error:1409E0E5:SSL routines:SSL3_WRITE_BYTES:ssl
> handshake failure
> 
> Any ideas? It is working for www.bacus.pt.

I think this has to do with SSL23 vs SSL3. Recently in a similar case
it was enough to add

        $Net::SSLeay::ssl_version = 3;

just after `use Net::SSLeay;'

I believe this is general problem with OpenSSL. Has anyone tried this
with s_client? The problem never manifests if you force either SSL2 or
SSL3, but does happen with SSL23, so perhaps the version autodetection
is broken.

--Sampo

> Using Netscape 4.56, I can access this site
> (www.quickcommerce.net/scripts/qc25/merchantlogin.asp) without problems 100%
> of times.
> 
> I am also writing to them, since they say they support SSLeay (in
> http://www.ecx.com/qc/authrequest.htm).
> 
> Thanks for your help.
>      )\(elson
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to