Estoy implementando un web service cuyo wsdl es host/WebService.asmx?WSDL.
Lo estoy implementando con nusoap. El codigo es el siguiente
Código PHP:
<?php
require_once('lib/nusoap.php');
$ini = ini_set("soap.wsdl_cache_enabled","0");
$client = new soapclient('wsdl');
$test= $client->call('Function',array("mail","pass","key"));
var_dump($test);
?>
Cita:
array
'faultcode' => string 'soap:Client' (length=11)
'faultstring' => string 'Server did not recognize the value of HTTP Header SOAPAction: .' (length=63)
'detail' => string '' (length=0)
Alguna idea como solucionar esto???array
'faultcode' => string 'soap:Client' (length=11)
'faultstring' => string 'Server did not recognize the value of HTTP Header SOAPAction: .' (length=63)
'detail' => string '' (length=0)
Gracias
Un saludo