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);
    }?>

It works in SoapUI...

No typos? getidspedizionebyrmn in the WSDL is lowercase.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.