I mean I want to understrand how to generate WSDL from my code
So I've rote
<?php
$soap = new SoapServer(null, array('uri' =>
'http://php.hoshmand.org/'));
$soap->addFunction('add');
$soap->handle();
function add($a, $b) {
return $a + $b;
}
?>
How to call it like a WSDL now?