使用TLS 1.2的PHP SOAP通信

我们在我们的网站上集成了UPS Web服务.最近我们从UPS得到警报:

Effective January 26, 2016,the UPS test environment will require the
TLS 1.2 security protocol, and willbe available for your system
testing.

Effective May 31, 2016,UPS will require the TLS 1.2 security protocol
in production. After that date,any communication requests submitted to
UPS using older protocols (TLS 1.1 orearlier) will fail.

我的问题是:

有没有办法使用TLS传递PHP SOAP?我已经google了很多,但还没找到任何解决方案.

请建议

解决方法:

我也遇到了这个问题.我用它来强制进行TLS通信.

$mode = array
(
    'soap_version' => 'SOAP_1_1',  // use soap 1.1 client
    'trace' => 1,
    'stream_context' => stream_context_create(array(
        'ssl' => array(
            'crypto_method' =>  STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT,
        )
     ))
);

// initialize soap client
$client = new SoapClient($this->wsdl, $mode);

但是我总是遇到一个问题(在我的开发环境中),MAMP包括一个没有TLS 1.2支持的openssl版本.

上一篇:UPS电源厂家对UPS的保养和维护建议


下一篇:UPS的分类与比较