Example #1
0
		<br/>
		To <b>use</b> the webservice, use any SOAP compatible client and import the WSDL file at
		<a href="<?php 
_p($strWsdlUrl);
?>
"><?php 
_p($strWsdlUrl);
?>
</a>
		<br/><br/>
	
		Example call on <b>ExampleService</b>:<br/><br/>
	
		<b>AddNumbers(15, 22):</b>
		<blockquote><div><?php 
_p($objClient->AddNumbers(15, 22));
?>
</div></blockquote>
		
		<b>GetDate(12, 25, 2007):</b>
		<blockquote><div>
			<?php 
_p($objClient->GetDate(12, 25, 2007));
?>
			<br/>(notice how the resulting QDateTime has been converted to a SOAP-compliant dateTime)
		</div></blockquote>

		<b>GetPeople('Smith'):</b>
		<ul>
<?php 
$objPeople = $objClient->GetPeople('Smith');