Hola, necesito añadir varios argumentos a un servicio SOAP con PHP, y no doy con la tecla :(
Lo intento de la siguiente manera y me da "error" => "Invalid column found!"
Código PHP:
<?php
$argumentos = array(
'List' => $idLista,
'Changes' => array (
'Property' => array (
array('Key' => 'MAIL','Value' => $email),
array('Key' => 'NAME','Value' => $nombre)
)
)
);
$resp = get_object_vars($this->_client->CreateUser($argumentos));
?>
El soap sería así:
Código:
<tem:CreateUser>
<!--Optional:-->
<tem:List>?</tem:List>
<!--Optional:-->
<tem:Changes>
<!--Zero or more repetitions:-->
<tem:Property>
<!--Optional:-->
<tem:Key>?</tem:Key>
<!--Optional:-->
<tem:Value>?</tem:Value>
</tem:Property>
</tem:Changes>
</tem:CreateUser>
help!