Consumo de web services SOAP en Codeigniter (PHP)
Como están expertos, estoy tratando de consumir un web services SOAP en condeigniter, lo que realice es:
- Habilitar en el php.ini el extension=php_soap.dll
- realice el siguiente codigo:
$client = new SoapClient( 'http://10.100.15.129/ Valorado/ Valorado.svc? SingleWsdl' , ["soap_version" => SOAP_1_2, 'soap_defencoding' => 'UTF-8'] );
$response = $client->__soapcall( "OrcListarMensual", array('dpto' => 'LPZ', 'mes' => 10, 'anio' => 2017));
echo $response;
Y en la pantalla del explorador me sale lo siguiente:
An uncaught Exception was encountered
Type: SoapFault
Message: The SOAP action specified on the message, '', does not match the HTTP SOAP Action, 'http://tempuri.org /IValorados/OrcListarMensual'.
Filename: C:\xampp\ htdocs\orc\ application\controllers\ Controlador_vaco.php
Line Number: 65
Backtrace:
File: C:\xampp\ htdocs\orc\ application\controllers\ Controlador_vaco.php
Line: 65
Function: __soapCall
File: C:\xampp\ htdocs\orc\ index.php
Line: 316
Function: require_once
En que estoy fallando... Por favor expert@s... .