You are here

function soap_server::getHTTPBody in Salesforce Suite 5.2

Same name in this branch
  1. 5.2 includes/nusoap.php \soap_server::getHTTPBody()
  2. 5.2 includes/nusoap.orig.php \soap_server::getHTTPBody()
Same name and namespace in other branches
  1. 5 includes/nusoap.php \soap_server::getHTTPBody()
  2. 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.orig.php, line 3854

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;
}