Documentation TYPO3 par Ameos |
Public Member Functions | |
init ($options=false, $username=false, $password=false) | |
login ($username, $password) | |
logout () | |
call ($func, $param=array(), $username=false, $password=false) | |
callPhpSOAP ($func, $param) | |
callPearSOAP ($func, $param) | |
callNuSOAP ($func, $param) | |
object2array ($object) | |
array2object ($array) | |
lastRequest () | |
lastResponse () | |
getFunctions () | |
Public Attributes | |
$options = array() | |
$client = false | |
$error = false | |
$username = false | |
$password = false | |
$reactid = false |
Definition at line 34 of file class.em_soap.php.
em_soap::init | ( | $ | options = false , |
|
$ | username = false , |
|||
$ | password = false | |||
) |
Enter description here...
array | $options | |
string | $username | |
string | $password |
Definition at line 74 of file class.em_soap.php.
em_soap::login | ( | $ | username, | |
$ | password | |||
) |
em_soap::logout | ( | ) |
Enter description here...
Definition at line 142 of file class.em_soap.php.
References call().
em_soap::call | ( | $ | func, | |
$ | param = array() , |
|||
$ | username = false , |
|||
$ | password = false | |||
) |
Enter description here...
unknown_type | $func | |
unknown_type | $param | |
unknown_type | $username | |
unknown_type | $password |
Definition at line 161 of file class.em_soap.php.
References $password, $username, callNuSOAP(), callPearSOAP(), and callPhpSOAP().
em_soap::callPhpSOAP | ( | $ | func, | |
$ | param | |||
) |
Enter description here...
unknown_type | $func | |
unknown_type | $param |
Definition at line 203 of file class.em_soap.php.
References object2array().
Referenced by call().
em_soap::callPearSOAP | ( | $ | func, | |
$ | param | |||
) |
Enter description here...
unknown_type | $func | |
unknown_type | $param |
Definition at line 244 of file class.em_soap.php.
References object2array().
Referenced by call().
em_soap::callNuSOAP | ( | $ | func, | |
$ | param | |||
) |
Enter description here...
unknown_type | $func | |
unknown_type | $param |
Definition at line 289 of file class.em_soap.php.
References array2object().
Referenced by call().
em_soap::object2array | ( | $ | object | ) |
Enter description here...
unknown_type | $object |
Definition at line 331 of file class.em_soap.php.
Referenced by callPearSOAP(), and callPhpSOAP().
em_soap::array2object | ( | $ | array | ) |
Enter description here...
unknown_type | $array |
Definition at line 349 of file class.em_soap.php.
Referenced by callNuSOAP().
em_soap::lastRequest | ( | ) |
em_soap::lastResponse | ( | ) |
em_soap::getFunctions | ( | ) |
em_soap::$options = array() |
valid options passed to the constructor : wsdl : The WSDL location, can be a local file location or an URL. soapoptions : Associative array of SOAP options to be passed to the SOAP implementation constructor, only used for the phpsoap implement. authentication : method of authentication : 'headers' soap headers are used 'prefix' function prefixes are used prefix : optional prefix to be put in front of all methods. implementation : Which type of soap implementation to use : 'detect' automatically detect an implementation. 'phpsoap' PHP builtin SOAP module <http://www.php.net/manual/en/ref.soap.php> 'nusoap' NuSOAP class <http://dietrich.ganx4.com/nusoap> 'pearsoap' PEAR SOAP class <http://pear.php.net/package/SOAP> format : Which type of return structure : 'object' PHP objects 'array' PHP arrays, default
Definition at line 58 of file class.em_soap.php.
Referenced by init().