I am using PHP 5.2.5.5 with Moodle 1.9.
When I make a simple SOAP call without parameters, it works. However, as soon as I use a call with a parameter, it fails. If I capture a SOAP request using Fiddler, I see that it does not add a parameter to the soap request at all.
Here is my sample code:
$WSDL = 'http://www.nanonull.com/TimeService/TimeService.asmx?WSDL';
$client = new SoapClient($WSDL);
$response = $client->getUTCTime();
$response = $client->getTimeZoneTime('ZULU');
Any suggestions?
source
share