Week 19b - Creating and Using A Web Service - Generating An XML File PDF

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

Lecture 22b: Using Existing

Web Services
Internet Technologies and Web
Services – CSE2034Y
Example 1: Temperature Converter
The WSDL
The code
• $wsdl =
"http://www.webservicex.net/ConvertTemper
ature.asmx?wsdl"; $client = new
nusoap_client($wsdl, 'wsdl'); //input requires
three elements, Temparate, FromUnit, ToUnit
$param = array('Temperature'=>$temp,
'FromUnit'=>$temp_from,
'ToUnit'=>$temp_to); $result = $client-
>call('ConvertTemp', $param);
The result

You might also like