Ver Mensaje Individual
  #4 (permalink)  
Antiguo 27/09/2007, 09:50
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: PHP SOAP y Attributos

Lo harias asi:
Código PHP:
$cliente= new SoapClient('http://direccion/archivo.wdsl', array( "classmap" => array( "nombreFuncion" => "Objeto" ) ));
class 
Objeto{
    public 
$etiqueta'valor';
}

$cliente->nombreFuncion( new Objeto ); 
Saludos.