SOAP FunctionsSOAP
&reftitle.intro;
The SOAP extension can be used to write SOAP Servers and Clients. It supports
subsets of SOAP 1.1, SOAP 1.2 and WSDL 1.1 specifications.
&reftitle.required;
This extension makes use of the GNOME xml
library. Download and install this library. You will need at
least libxml-2.5.4.
&reftitle.install;
This extension is only available if PHP was configured with
.
&reference.soap.ini;
&reftitle.classes;
SoapClient
&reftitle.constructor;
-
constructs a new SoapClient object
&reftitle.methods;
- Calls a SOAP function (deprecated) - Performs a SOAP request - Returns list of SOAP functions - Returns last SOAP request - Returns last SOAP request headers - Returns last SOAP response - Returns last SOAP response headers - Returns list of SOAP types - Sets the
cookie that will be sent with the SOAP request - Calls a SOAP functionSoapFault
&reftitle.constructor;
- construct a new SoapFault objectSoapHeaderSoapHeader is a special low-level class for passing
or returning SOAP headers. It's just a data holder and it does not have any
special methods except its constructor. It can be used in the method to pass a SOAP header or
in a SOAP header handler to return the header in a SOAP response.
&reftitle.constructor;
- construct a new SoapHeader objectSoapParamSoapParam is a special low-level class for naming
parameters and returning values in non-WSDL mode.
It's just a data holder and it does not have any special methods except
its constructor.
&reftitle.constructor;
- construct a new SoapParam objectSoapServer
&reftitle.constructor;
- construct a new SoapServer object
&reftitle.methods;
- Adds one or several functions those will handle SOAP requests - - Returns list of defined functions - Handles a SOAP request - Sets class which will handle SOAP requests - Sets persistence mode of SoapServerSoapVarSoapVar is a special low-level class for encoding
parameters and returning values in non-WSDL mode. It's
just a data holder and does not have any special methods except the constructor.
It's useful when you want to set the type property in SOAP request or response.
&reftitle.constructor;
- construct a new SoapVar object
&reference.soap.constants;
&reference.soap.functions;