function soap_server::getHTTPBody in Salesforce Suite 5.2
Same name in this branch
- 5.2 includes/nusoap.php \soap_server::getHTTPBody()
- 5.2 includes/nusoap.orig.php \soap_server::getHTTPBody()
Same name and namespace in other branches
- 5 includes/nusoap.php \soap_server::getHTTPBody()
- 5 includes/nusoap.orig.php \soap_server::getHTTPBody()
* gets the HTTP body for the current response. * *
Parameters
string $soapmsg The SOAP payload: * @return string The HTTP body, which includes the SOAP payload * @access private
2 calls to soap_server::getHTTPBody()
- soap_server::send_response in includes/
nusoap.php - * sends an HTTP response * * The following fields are set by this function (when successful) * * outgoing_headers * response * * @access private
- soap_server::send_response in includes/
nusoap.orig.php - * sends an HTTP response * * The following fields are set by this function (when successful) * * outgoing_headers * response * * @access private
File
- includes/
nusoap.php, line 3859
Class
- soap_server
- soap_server allows the user to create a SOAP server that is capable of receiving messages and returning responses
Code
function getHTTPBody($soapmsg) {
return $soapmsg;
}