Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/01/2014, 12:05
elpetakas
 
Fecha de Ingreso: enero-2011
Mensajes: 105
Antigüedad: 13 años, 3 meses
Puntos: 10
Exclamación SOAP: Varios argumentos por PHP

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!