Kind of new to SOAP. Trying to get weather data from NOAA website. The first SOAP request shown below works, and returns the latitude and longitude. The second SOAP request doesn't work. I am obviously not sending the data correctly. Can anyone help? Thank you
<?php
$wsdl = "http://graphical.weather.gov/xml/DWMLgen/wsdl/ndfdXML.wsdl";
$client = new SoapClient($wsdl,array("trace"=>1,"exceptions"=>0));
$rs = $client->LatLonListZipCode(98011);
echo('<pre>'.print_r($rs,1).'</pre>');
$par=array('latitude'=>39.0000,'longitude'=>-77.0000,'product'=>'time-series','startTime'=>'2004-04-27T12:00','endTime'=>'2004-04-30T12:00','Unit'=>'e','weatherParameters'=>'maxt = TRUE');
$rs = $client->NDFDgen($par);
echo('<pre>'.print_r($rs,1).'</pre>');
?>