How do you interpret this? use this code
$url="miurlwsdl";
$client = new SoapClient($url,array("trace" => 1));
$f=$client->__getFunctions();
var_dump($f[0]);
and throws this at me
string (101) "AuthenticateIniResponse AuthenticateIni (AuthenticateIni $ parameters)"
Now I'm trying to consume that ws with this and it shows nothing
$url="miurl.svc?wsdl";
$client = new SoapClient($url,array("trace" => 1));
$para=Array('paraA'=>'12345678','paraB'=>'33333');
$result=$client->AutentificaIni($para);
print_r($result);
and the only thing he shows me is: AuthenticaIni
However in SOAPUI it shows me the values without problems.
Something else will be missing?