qualcuno di voi ha mai dovuto richiamare dei web services?
dove sbaglio?

require_once('nusoap.php');
$client = new soapclient('http://.....nomewebservice.asmx?WSDL', true);
$err = $client->getError();
if ($err) {
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
}
$paramsXML = array(
'authenticationToken' => '123123',
'parameters' => 'xxx',
'applicationDate' => '2011-07-26'
);
$result=$client->call("NomeMetodo", $paramsXML);

la libreria nusoap restituisce l'errore:
wsdl error: phpType is struct, but value is not an array: see debug output for details

qualcuno sa come aiutarmi?