Search found 4 matches

by ndowdall
Sat Jul 15, 2006 4:37 pm
Forum: PHP - Code
Topic: problem getting results from web services
Replies: 4
Views: 572

I am still having trouble. I have the following code <?php require_once('../nusoap.php'); $country_name='Ireland'; $parameters=array('CountryName' => $country_name); $sclient= new soapclient('http://www.webserviceX.NET/Globalweather.asmx'); $result = $sclient->call('GetCitiesByCountry' , $parameters...
by ndowdall
Wed Jul 12, 2006 1:58 pm
Forum: PHP - Code
Topic: problem getting results from web services
Replies: 4
Views: 572

That works but now would I insert the output into my own page.
What I am trying to do is to have some of the returned data displayed on the top of the page.

Regards
ndowdall
by ndowdall
Wed Jul 12, 2006 1:23 pm
Forum: PHP - Code
Topic: problem getting results from web services
Replies: 4
Views: 572

Thanks astions will give it a try.
by ndowdall
Tue Jul 11, 2006 9:57 am
Forum: PHP - Code
Topic: problem getting results from web services
Replies: 4
Views: 572

problem getting results from web services

I am trying to use the following web service to get a weather report for my site. http://www.webservicex.net/globalweather.asmx However the page returns no results. Anyone got any ideas as to what is wrong with my code. I have tested the web service using asp.net and it is working so it must be my c...