Comment 82 for bug 965371

Revision history for this message
Seyfer (seyferseed) wrote :

Workaround for PHP to make it work need to disable SSL check by adding this params to SoapClient

    "stream_context" => stream_context_create(
        array(
            'ssl' => array(
                'verify_peer' => false,
                'verify_peer_name' => false,
            )
        )
    )