1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="SoapServer" namespace="" name="SoapServer">
<method name="addFunction" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Adds one or more functions to handle SOAP requests"/>
<return type="void"/>
</docblock>
<parameter name="functions" optional="false" byreference="false" type="object" class="mixed"/>
</method>
<method name="addSoapHeader" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Add a SOAP header to the response"/>
<return type="void"/>
</docblock>
<parameter name="object" optional="false" byreference="false" type="object" class="SoapHeader"/>
</method>
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="SoapServer constructor"/>
<return type="void"/>
</docblock>
<parameter name="wsdl" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="options" optional="true" byreference="false" type="object" class="array"/>
</constructor>
<method name="fault" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Issue SoapServer fault indicating an error">Sends a response to the client of the current request indicating an error.</description>
<return type="void"/>
</docblock>
<parameter name="code" optional="false" byreference="false" type="string"/>
<parameter name="string" optional="false" byreference="false" type="string"/>
<parameter name="actor" optional="true" byreference="false" type="string"/>
<parameter name="details" optional="true" byreference="false" type="string"/>
<parameter name="name" optional="true" byreference="false" type="string"/>
</method>
<method name="getFunctions" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns list of defined functions"/>
<return type="array"/>
</docblock>
</method>
<method name="handle" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Handles a SOAP request"/>
<return type="void"/>
</docblock>
<parameter name="soap_request" optional="true" byreference="false" type="string"/>
</method>
<method name="setClass" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Sets the class which handles SOAP requests">Exports all methods from specified class.</description>
<return type="void"/>
</docblock>
<parameter name="class_name" optional="false" byreference="false" type="string"/>
<parameter name="..." optional="true" byreference="false" type="object" class="mixed"/>
</method>
<method name="setObject" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Sets the object which will be used to handle SOAP requests"/>
<return type="void"/>
</docblock>
<parameter name="object" optional="false" byreference="false" type="object" class="object"/>
</method>
<method name="setPersistence" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Sets SoapServer persistence mode">This function allows changing the persistence state of a SoapServer object between requests. This function allows saving data between requests utilizing PHP sessions. This method only has an affect on a SoapServer after it has exported functions utilizing SoapServer::setClass.</description>
<return type="void"/>
</docblock>
<parameter name="mode" optional="false" byreference="false" type="int"/>
</method>
<method name="SoapServer" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="SoapServer constructor"/>
<return type="void"/>
</docblock>
<parameter name="wsdl" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="options" optional="true" byreference="false" type="object" class="array"/>
</method>
</class>
|