My code works great but I would like to set some comments to the parameters variables of the functions.
$server->register(
// method name:
'getCustomerExists',
// parameter list:
array('byWhat' => 'xsd:string'),
// return value(s):
array(),
$namespace,
false,
'rpc',
'encoded',
// description: documentation for the method
'Retrieve customer by Email OR Identification Number.
@byWhat = String');
function getCustomerExists($byWhat){
return $web->getCustomerExists($byWhat);
}
And for this test I'm using Visual C# Express. So when I type my function, this is what popup as a help:
Unless people read the documentation they won't know what "byWhat" is.
What I'm searching for is that parameter comment Visual C# gives in their functions.
I have tried this solution without success.