SoapClient::__construct
(PHP 5, PHP 7, PHP 8)
SoapClient::__construct — SoapClient constructor
Description
Creates a SoapClient object to connect to a SOAP service.
Parameters
wsdlURI of a WSDL file describing the service, which is used to automatically configure the client. If not provided, the client will operate in non-WSDL mode.
Note:
By default, the WSDL file will be cached for performance. To disable or configure this caching, see SOAP Configure Options and the
cache_wsdloption.optionsAn associative array specifying additional options for the SOAP client. If
wsdlis provided, this is optional; otherwise, at leastlocationandurlmust be provided.locationstringThe URL of the SOAP server to send the request to.
Required if the
wsdlparameter is not provided. If both awsdlparameter andlocationoption are provided, thelocationoption will over-ride any location specified in the WSDL file.uristringThe target namespace of the SOAP service.
Required if the
wsdlparameter is not provided; ignored otherwise.styleintSpecifies the binding style to use for this client, using the constants
SOAP_RPCandSOAP_DOCUMENT.SOAP_RPCindicates RPC-style binding, where the SOAP request body contains a standard encoding of a function call.SOAP_DOCUMENTindicates document-style binding, where the SOAP request body contains an XML document with service-defined meaning.If the
wsdlparameter is provided, this option is ignored, and the style is read from the WSDL file.If neither this option nor the
wsdlparameter is provided, RPC-style is used.useintSpecifies the encoding style to use for this client, using the constants
SOAP_ENCODEDorSOAP_LITERAL.SOAP_ENCODEDindicates encoding using the types defined in the SOAP specification.SOAP_LITERALindicates encoding using a schema defined by the service.If the
wsdlparameter is provided, this option is ignored, and the encoding is read from the WSDL file.If neither this option nor the
wsdlparameter is provided, the "encoded" style is used.soap_versionintSpecifies the version of the SOAP protocol to use:
SOAP_1_1for SOAP 1.1, orSOAP_1_2for SOAP 1.2.If omitted, SOAP 1.1 is used.
authenticationintSpecifies the authentication method when using HTTP authentication in requests. The value may be either
SOAP_AUTHENTICATION_BASICorSOAP_AUTHENTICATION_DIGEST.If omitted, and the
loginoption is provided, Basic Authentication is used.loginstringUsername to use with HTTP Basic or Digest Authentication.
passwordstringPassword to use with HTTP Basic or Digest Authentication.
Not to be confused with
passphrase, which is used with HTTPS Client Certificate authentication.local_certstringPath to a client certificate for use with HTTPS authentication. It must be a PEM encoded file which contains the certificate and private key.
The file can also include a chain of issuers, which must come after the client certificate.
Can also be set via
stream_context, which also supports specifying a separate private key file.passphrasestringPassphrase for the client certificate specified in the
local_certoption.Not to be confused with
password, which is used for Basic or Digest Authentication.Can also be set via
stream_context.proxy_hoststringHostname to use as a proxy server for HTTP requests.
The
proxy_portoption must also be specified.proxy_portintTCP port to use when connecting to the proxy server specified in
proxy_host.proxy_loginstringOptional username to authenticate with the proxy server specified in
proxy_host, using HTTP Basic Authentication.proxy_passwordstringOptional password to authenticate with the proxy server specified in
proxy_host, using HTTP Basic Authentication.compressionintEnables compression of HTTP SOAP requests and responses.
The value should be the bitwise OR of three parts: an optional
SOAP_COMPRESSION_ACCEPT, to send an "Accept-Encoding" header; eitherSOAP_COMPRESSION_GZIPorSOAP_COMPRESSION_DEFLATEto indicate the compression algorithm to use; and a number between 1 and 9 to indicate the level of compression to use in the request. For example, to enable two-way gzip compression with the maximum compression level, useSOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP | 9.encodingstringDefines the internal character encoding. Requests are always sent in UTF-8, and converted to and from this encoding.
traceboolCaptures request and response information, which can then be accessed with the methods SoapClient::__getLastRequest(), SoapClient::__getLastRequestHeaders(), SoapClient::__getLastResponse(), and SoapClient::__getLastResponseHeaders().
If omitted, defaults to
falseclassmaparrayUsed to map types defined in the WSDL to PHP classes. It should be specified as an associative array with type names from the WSDL as keys and names of PHP classes as values. Note that the type name of an element is not necessarily the same as the element (tag) name.
The provided class names should always be fully qualified with any namespaces, and never start with a leading
\. The correct form can be generated by using ::class.Note that when creating a class, the constructor will not be called, but magic __set() and __get() methods for individual properties will be.
typemaparrayUsed to define type mappings using user-defined callback functions. Each type mapping should be an array with keys
type_name(string specifying the XML element type);type_ns(string containing namespace URI);from_xml(callable accepting one string parameter and returning an object) andto_xml(callable accepting one object parameter and returning a string).exceptionsboolDefines whether errors throw exceptions of type SoapFault.
Defaults to
trueconnection_timeoutintDefines a timeout in seconds for the connection to the SOAP service. This option does not define a timeout for services with slow responses. To limit the time to wait for calls to finish the default_socket_timeout configuration option is available.
cache_wsdlintIf the
wsdlparameter is provided, and the soap.wsdl_cache_enabled configuration option is on, this option determines the type of caching. One ofWSDL_CACHE_NONE,WSDL_CACHE_DISK,WSDL_CACHE_MEMORYorWSDL_CACHE_BOTH.Two types of cache are available: in-memory caching, which caches the WSDL in the memory of the current process; and disk caching, which caches the WSDL in a file on disk, shared between all processes. The directory to use for the disk cache is determined by the soap.wsdl_cache_dir configuration option. Both caches use the same lifetime, determined by the soap.wsdl_cache_ttl configuration option. The in-memory cache also has a maximum number of entries determined by the soap.wsdl_cache_limit configuration option.
If not specified, the soap.wsdl_cache configuration option will be used.
user_agentstringThe value to use in the
User-AgentHTTP header when making requests.Can also be set via
stream_context.If not specified, the user agent will be
"PHP-SOAP/"followed by the value ofPHP_VERSION.stream_contextresourceA stream context created by stream_context_create(), which allows additional options to be set.
The context may include socket context options, SSL context options, plus selected HTTP context options:
content_type,header,max_redirects,protocol_version, anduser_agent.Note that the following HTTP headers are generated automatically or from other options, and will be ignored if specified in the
'header'context option:host,connection,user-agent,content-length,content-type,cookie,authorization, andproxy-authorizationfeaturesintA bitmask to enable one or more of the following features:
SOAP_SINGLE_ELEMENT_ARRAYSWhen decoding a response to an array, the default behaviour is to detect whether an element name appears once or multiple times in a particular parent element. For elements which appear only once, an object property allows direct access to the content; for elements which appear more than once, the property contains an array with the content of each matching element.
If the
SOAP_SINGLE_ELEMENT_ARRAYSfeature is enabled, elements which appear only once are placed in a single-element array, so that access is consistent for all elements. This only has an effect when using a WSDL containing a schema for the response. See Examples section for an illustration.SOAP_USE_XSI_ARRAY_TYPEWhen the
useoption or WSDL property is set toencoded, force arrays to use a type ofSOAP-ENC:Array, rather than a schema-specific type.SOAP_WAIT_ONE_WAY_CALLSWait for a response even if the WSDL indicates a one-way request.
keep_aliveboola boolean value defining whether to send the
Connection: Keep-Aliveheader orConnection: close.Defaults to
truessl_methodstringSpecifies the SSL or TLS protocol version to use with secure HTTP connections, instead of the default negotiation. Specifying
SOAP_SSL_METHOD_SSLv2orSOAP_SSL_METHOD_SSLv3will force use of SSL 2 or SSL 3, respectively. SpecifyingSOAP_SSL_METHOD_SSLv23has no effect; the constant exists only for backwards compatibility. As of PHP 7.2.0, specifyingSOAP_SSL_METHOD_TLSalso has no effect; in earlier versions, it forced use of TLS 1.0.Note that SSL versions 2 and 3 are considered insecure, and may not be supported by the installed OpenSSL library.
This option is deprecated as of PHP 8.1.0. A more flexible alternative, which allows specifying individual versions of TLS, is to use the
stream_contextoption with the 'crypto_method' context parameter.<?php
// Specifying use of TLS 1.3 only
$context = stream_context_create([
'ssl' => [
'crypto_method' => STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT
]
]);
$client = new SoapClient("some.wsdl", ['context' => $context]);
Errors/Exceptions
SoapClient::__construct() will generate an E_ERROR error if the location and uri options aren't provided in non-WSDL mode.
A SoapFault exception will be thrown if the wsdl URI cannot be loaded.
Examples
Example #1 SoapClient::__construct() example
<?php
$client = new SoapClient("some.wsdl");
$client = new SoapClient("some.wsdl", array('soap_version' => SOAP_1_2));
$client = new SoapClient("some.wsdl", array('login' => "some_name",
'password' => "some_password"));
$client = new SoapClient("some.wsdl", array('proxy_host' => "localhost",
'proxy_port' => 8080));
$client = new SoapClient("some.wsdl", array('proxy_host' => "localhost",
'proxy_port' => 8080,
'proxy_login' => "some_name",
'proxy_password' => "some_password"));
$client = new SoapClient("some.wsdl", array('local_cert' => "cert_key.pem"));
$client = new SoapClient(null, array('location' => "http://localhost/soap.php",
'uri' => "http://test-uri/"));
$client = new SoapClient(null, array('location' => "http://localhost/soap.php",
'uri' => "http://test-uri/",
'style' => SOAP_DOCUMENT,
'use' => SOAP_LITERAL));
$client = new SoapClient("some.wsdl",
array('compression' => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP | 9));
$client = new SoapClient("some.wsdl", array('encoding'=>'ISO-8859-1'));
class MyBook {
public $title;
public $author;
}
$client = new SoapClient("books.wsdl", array('classmap' => array('book' => "MyBook")));
$typemap = array(
array("type_ns" => "http://schemas.example.com",
"type_name" => "book",
"from_xml" => "unserialize_book",
"to_xml" => "serialize_book")
);
$client = new SoapClient("books.wsdl", array('typemap' => $typemap));
?>Example #2 Using the SOAP_SINGLE_ELEMENT_ARRAYS feature
<?php
/* Assuming a response like this, and an appropriate WSDL:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:example">
<SOAP-ENV:Body>
<response>
<collection>
<item>Single</item>
</collection>
<collection>
<item>First</item>
<item>Second</item>
</collection>
</response>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
*/
echo "Default:\n";
$client = new TestSoapClient(__DIR__ . '/temp.wsdl');
$response = $client->exampleRequest();
var_dump( $response->collection[0]->item );
var_dump( $response->collection[1]->item );
echo "\nWith SOAP_SINGLE_ELEMENT_ARRAYS:\n";
$client = new TestSoapClient(__DIR__ . '/temp.wsdl', ['features' => SOAP_SINGLE_ELEMENT_ARRAYS]);
$response = $client->exampleRequest();
var_dump( $response->collection[0]->item );
var_dump( $response->collection[1]->item );The above example will output:
Default:
string(6) "Single"
array(2) {
[0] =>
string(5) "First"
[1] =>
string(6) "Second"
}
With SOAP_SINGLE_ELEMENT_ARRAYS:
array(1) {
[0] =>
string(6) "Single"
}
array(2) {
[0] =>
string(5) "First"
[1] =>
string(6) "Second"
}