in reply to SSL negotiation no cipher problem

This problem is nothing to do with your SOAP modules.

did you check the ssl certification ?

openssl s_client -connect myserver.com:443 -cert c:\certs \usercert.pem -key c:\certs\notacakeynopass.pem -CApath c:\certs\trust +ed
use the above to see the SSL certification with debug enabled.

Replies are listed 'Best First'.
Re^2: SSL negotiation no cipher problem
by Anonymous Monk on Sep 08, 2006 at 03:52 UTC

    Okay. I used openssl to create those files:

    src\perl> \openssl\bin\openssl req -config \openssl\bin\openssl.cnf -n +ew -days 365 -newkey rsa:1024 -x509 -keyout notacakey.pem -out notaca +cert.pem src\perl> \openssl\bin\openssl rsa -in notacakey.pem -out notacakeynop +ass.pem

    And in my perl program added:

    $ENV{HTTPS_CERT_FILE} = 'notacacert.pem'; $ENV{HTTPS_KEY_FILE} = 'notacakeynopass.pem';

    The error still is still there, what do I missing?