Hello Forum,
I am trying to get access to the following webservice with the following code:
binding:GlobalWeather
include('nusoap.php');
$client = new soapclient"http://live.capescience.com/wsdl/GlobalWeather.wsdl","wsdl");
$args=array("code"=>"syd");
$results = $client->call("getWeatherReport",$args);
|
This one is not working. I am not very familyar with web-services so I donĀ“t know whats going wrong. Maybe it depends to the binding, because when I try the following I get a result:
include('nusoap.php');
$client = new soapclient"http://live.capescience.com/wsdl/GlobalWeather.wsdl","wsdl");
$args=array("code"=>"syd");
$results = $client->call("getStation",$args);
|
It works. (binding:StationInfo)
Maybe someone knows how to solve the problem. Thanks very much.
regards
Ronny