我正在使用 NuSOAP,我正在尝试发出请求,但总是收到 500 错误:
<?php
require_once('../lib/nusoap.php');
$c = new soapclient('http://example.com/index.asmx?WSDL');
$clientVAT = $c->call('GetClient',
array(
'empresa' => '*****',
'password' => '******',
'nif' => '*******',
));
echo "clientVAT $clientVAT.";
?>
这还不足以从服务器获得响应吗?