function soap_server::add_to_map in Salesforce Suite 5.2
Same name in this branch
- 5.2 includes/nusoap.php \soap_server::add_to_map()
- 5.2 includes/nusoap.orig.php \soap_server::add_to_map()
Same name and namespace in other branches
- 5 includes/nusoap.php \soap_server::add_to_map()
- 5 includes/nusoap.orig.php \soap_server::add_to_map()
* add a method to the dispatch map (this has been replaced by the register method) * *
Parameters
string $methodname: * @param string $in array of input values * @param string $out array of output values * @access public * @deprecated
File
- includes/
nusoap.orig.php, line 3892
Class
- soap_server
- soap_server allows the user to create a SOAP server that is capable of receiving messages and returning responses
Code
function add_to_map($methodname, $in, $out) {
$this->operations[$methodname] = array(
'name' => $methodname,
'in' => $in,
'out' => $out,
);
}