Tengo un problema al llamar un webservice desde un servidor apache utilizando Centos y PHP 5.3.
Al momento de realizar esta petición:
Código PHP:
$cliente = new nusoap_client($url);
$cliente->soap_defencoding = 'UTF-8';
// LLAMADA AL WS
$result2 = $cliente->call(
$metodoALlamar, // Funcion a llamar
$_param, $serverURL . "/" . $serverScript, // namespace
$serverURL . "/" . $serverScript . "/" . $metodoALlamar // SOAPAction
);
Código PHP:
HTTP Error: cURL ERROR: 0: NSS: client certificate not found (nickname not specified)
Gracias.