クライアント証明書を必要とするRESTful Webサービスに接続することになっているphpアプリケーションを実行しています。
しかし、クライアント証明書でphp curlを使用すると、セグメンテーション違反が発生します。
キーと証明書ファイルが正しい。rhel 6 で php 5.3.3 を使用しています。
助けてくれる人はいますか?
<?php
$url = 'https://10xxxxxxxxxxxxxxxxxx';
$data = array(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx);
$data_string = json_encode($data);
echo($data_string);
error_reporting(E_ALL);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Accept: application/json',
'User-Agent: Apache CXF 2.6.1',
'Cache-Control: no-cache',
'Pragma: no-cache',
'Connection: keep-alive',
'Content-Length: ' . strlen($data_string))
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_VERBOSE, true);
curl_setopt($ch, CURLOPT_SSLKEY, '/fullpath/b.key');
curl_setopt($ch, CURLOPT_SSLCERT, '/fullpath/c.crt');
$result = curl_exec($ch);
echo(htmlentities($result));
?>