You are here

function soap_transport_http::sendHTTPS in Salesforce Suite 5.2

Same name in this branch
  1. 5.2 includes/nusoap.php \soap_transport_http::sendHTTPS()
  2. 5.2 includes/nusoap.orig.php \soap_transport_http::sendHTTPS()
Same name and namespace in other branches
  1. 5 includes/nusoap.php \soap_transport_http::sendHTTPS()
  2. 5 includes/nusoap.orig.php \soap_transport_http::sendHTTPS()

* send the SOAP message via HTTPS 1.0 using CURL * *

Parameters

string $msg message data: * @param integer $timeout set connection timeout in seconds * @param integer $response_timeout set response timeout in seconds * @param array $cookies cookies to send * @return string data * @access public

File

includes/nusoap.orig.php, line 2277

Class

soap_transport_http
transport class for sending/receiving data via HTTP and HTTPS NOTE: PHP must be compiled with the CURL extension for HTTPS support

Code

function sendHTTPS($data, $timeout = 0, $response_timeout = 30, $cookies) {
  return $this
    ->send($data, $timeout, $response_timeout, $cookies);
}