I have a problem: I can't get the correct answer from the webservice. The two parameters are correct and the source seems to me to be correct. The system does not require authentication ...
What am I doing wrong?
<?
try
{
$wsdl = "http://wsr.brt.it:10041/web/GetIdSpedizioneByRMNService/GetIdSpedizioneByRMN?wsdl";
$client = new SoapClient($wsdl);
$result = $client->__soapCall("GetIdSpedizioneByRMN", array('RIFERIMENTO_MITTENTE_NUMERICO' => '2350926','CLIENTE_ID' => '1420633'));
print_r($result);
} catch (SoapFault $E)
{
$E->getTraceAsString();
echo $E->getMessage();
echo "<br><br>";
var_dump($E);
}?>