Get SOAP response : SOAP Response « Web Services SOAP WSDL « PHP






Get SOAP response

<?php
   $ws = "http://www.xmethods.net/sd/2001/TemperatureService.wsdl";
   $zipcode = "12312";
   $client = new SoapClient($ws,array('trace' => 1));
   $temperature = $client->getTemp($zipcode);
   echo htmlspecialchars($client->__getLastResponse());
?>


           
       








Related examples in the same category