Código PHP:
$client = new nusoap_client("localhost/index.php?wsdl",true);
$dataPrueba = $client->call('getLista','');
//En PHP retorna:
Array
(
[0] => Array
(
[ID_ZONA] => 10
[DESC_ZONA] => ALAMEDA
)
}
//Lo que necesito que retorne es el XML o lo mismo que retorna SoapUI, o un curl, seria esto:
<xml>
<item>
<ID_ZONA xsi:type="xsd:string">10</ID_ZONA>
<DESC_ZONA xsi:type="xsd:string">ALAMEDA</DESC_ZONA>
</item>
</xml>