Forum Moderators: coopster
I'm trying to consume the response from the public webservice @ [w3schools.com...]
...using this code:
require_once('lib/nusoap.php');
$parm = array('Celsius'=>'15');
$endpoint_path = 'http://www.w3schools.com/webservices/tempconvert.asmx';
$client = new soapclient($endpoint_path, true);
$result = $client->call('CelsiusToFahrenheit', $parm);
print_r($result);
...but this returns a blank document.
What am I doing wrong?