Esto es como se hace un SoapClient en php. Nunca he usado nusoap porque he visto que todo el mundo tiene problemas con eso. De magento no se nada:
Código PHP:
Ver original$WebService= new SoapClient
("http://localhost/url?wsdl", array('trace' => 1,'soap_version' => SOAP_1_1
)); $arreglo=array('parametro1'=>$parametro1,'parametro2'=>$parametro2, ...);//PuedenSerVarios $respuesta = $WebService->__soapCall
('NombreMetodo',array($arreglo));