SoapClient::__getLastRequest

(PHP 5 >= 5.0.1, PHP 7) Returns last SOAP request public string SoapClient::__getLastRequest ( void ) Returns the XML sent in the last SOAP request. Note: This method works only if the SoapClient object was created with the trace option set to TRUE. Returns: The last SOAP request, as an XML string. Examples: SoapClient::__getLa

SoapClient::__getFunctions

(PHP 5 >= 5.0.1, PHP 7) Returns list of available SOAP functions public array SoapClient::__getFunctions ( void ) Returns an array of functions described in the WSDL for the Web service. Note: This function only works in WSDL mode. Returns: The array of SOAP function prototypes, detailing the return type, the function name and type-hinted paramaters.

SoapClient::__doRequest

(PHP 5 >= 5.0.1, PHP 7) Performs a SOAP request public string SoapClient::__doRequest ( string $request, string $location, string $action, int $version [, int $one_way = 0 ] ) Performs SOAP request over HTTP. This method can be overridden in subclasses to implement different transport layers, perform additional XML processing or other purpose. Parameters: request Th

SoapClient::__construct

(PHP 5 >= 5.0.1, PHP 7) SoapClient constructor public SoapClient::SoapClient ( mixed $wsdl [, array $options ] ) This function is an alias of: SoapClient::SoapClient()

SoapClient::__call

(PHP 5 >= 5.0.1, PHP 7) Calls a SOAP function (deprecated) public mixed SoapClient::__call ( string $function_name, string $arguments ) Calling this method directly is deprecated. Usually, SOAP functions can be called as methods of the SoapClient object; in situations where this is not possible or additional options are needed, use SoapClient::__soapCall().

use_soap_error_handler

(Unknown) Set whether to use the SOAP error handler bool use_soap_error_handler ([ bool $handler = true ] ) This function sets whether or not to use the SOAP error handler in the SOAP server. It will return the previous value. If set to TRUE, details of errors in a SoapServer application will be sent to the client as a SOAP fault message. If FALSE, the standard PHP error handler is used. The default is to send error to the

is_soap_fault

(Unknown) Checks if a SOAP call has failed bool is_soap_fault ( mixed $object ) This function is useful to check if the SOAP call failed, but without using exceptions. To use it, create a SoapClient object with the exceptions option set to zero or FALSE. In this case, the SOAP method will return a special SoapFault object which encapsulates the fault details (faultcode, faultstring, faultactor and faultdetails). If excepti

SCA_SoapProxy::createDataObject

(PECL SDO >= 0.5.0) create an SDO SDO_DataObject SCA_SoapProxy::createDataObject ( string $type_namespace_uri , string $type_name ) This method is used inside either an ordinary PHP script or an SCA component that needs to create an SDO to pass to a web service. The parameters are the desired SDO's namespace URI and type name. The namespace and type must be defined in the interface of the component that is to be called

SCA_LocalProxy::createDataObject

(PECL SDO >= 0.5.0) create an SDO SDO_DataObject SCA_LocalProxy::createDataObject ( string $type_namespace_uri , string $type_name ) This method is used inside either an ordinary PHP script or an SCA component that needs to create an SDO to pass to a local service. The parameters are the desired SDO's namespace URI and type name. The namespace and type must be defined in the interface of the component that is to be cal

SCA::getService

(PECL SDO >= 0.5.0) Obtain a proxy for a service mixed SCA::getService ( string $target [, string $binding [, array $config ]] ) Examine the target and initialize and return a proxy of the appropriate sort. If the target is for a local PHP component the returned proxy will be an SCA_LocalProxy. If the target is for a WSDL file, the returned proxy will be a SCA_SoapProxy. Parameters: