You are here

function soap_transport_http::setSOAPAction in Salesforce Suite 5

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

* set the soapaction value * *

Parameters

string $soapaction: * @access public

File

includes/nusoap.orig.php, line 2359

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 setSOAPAction($soapaction) {
  $this->outgoing_headers['SOAPAction'] = '"' . $soapaction . '"';
  $this
    ->debug('set SOAPAction: ' . $this->outgoing_headers['SOAPAction']);
}