Getting blank result with SoapClient PHP

Aksahantur

New Member
I have a webservice with this method (infoAfiliadoR):
5xonL.png
I'm trying to use it by this way:\[code\]$info_afiliado = new SoapClient("some_ws.wsdl", array('trace' => 1, 'connection_timeout' => 10, "exceptions" => 1));$nombre_parametro = 'infoAfiliadoRRequest';$param = new StdClass();$param->llave = "SOME_LLAVE";$param->tipoConsulta = "SOME_CONSULTA";$param->parametro = "PARAMETRO";$llamada = $info_afiliado->infoAfiliadoR(new SoapParam($param, $nombre_parametro));\[/code\]When I run the script I got \[code\]$llamada\[/code\] in blank.I need help. :(
 
Back
Top