通过php发送带有.PFX文件的Soap请求

时间:2018-10-03 11:27:57

标签: php soap wsdl soap-client

我尝试对.pfx文件执行SOAP请求,但出现如下错误:

SOAP-ERROR: Parsing WSDL: Couldn't load from : failed to load external entity

我的代码如下:

    $this->api_url = "https://wsa.clalbit.co.il/CalcCampaignPremia.asmx?WSDL";

    $certificate   = dirname( __FILE__ ) . '/ws-hova.pfx';
    $options       = array(
        'cache_wsdl' => WSDL_CACHE_NONE,
        'trace'          => 1,
        'local_cert'     => $certificate,
        'stream_context' => stream_context_create( array(
            'ssl' => array(
                'verify_peer'       => false,
                'verify_peer_name'  => false,
                'allow_self_signed' => true
            )
        ) )
    );

    try {
        $this->soap = new SoapClient( $this->api_url, $options );
    } catch (SoapFault $e) {
        echo $e->getMessage();
    }

不明白为什么它不起作用。

谢谢你的建议

1 个答案:

答案 0 :(得分:0)

本机PHP soap客户端类不能与pfx证书一起使用。您必须将pfx文件转换为pem文件。为此,install the openssl toolkit并在Shell /命令行界面中运行以下命令。

openssl pkcs12 -in ws-hova.pfx -out ws-hova.pem -nodes -clcerts

从pfx证书创建完pem证书后,您可以将其简单地与PHP soap客户端一起使用。

$certificate = dirname( __FILE__ ) . '/ws-hova.pem';
$options = [
    'cache_wsdl' => WSDL_CACHE_NONE,
    'exceptions' => true,
    'trace' => true,
    'local_cert' => $certificate,
    'authentication' => SOAP_ATHENTICATION_DIGEST,
];

try {
    $client = new SoapClient( $this->api_url, $options );
} catch (SoapFault $e) {
    echo $e->getMessage();
}

这可以解决问题。 ;) 玩得开心。