example for amazon webservice
<?php
$wsdl_url =
"http://soap.amazon.com/schemas3/AmazonWebServices.wsdl";
$client = new SoapClient($wsdl_url);
var_dump($client->__getFunctions());
?>
SoapServer->getFunctions
(No version information available, might be only in CVS)
SoapServer->getFunctions — Returns list of defined functions
Description
SoapServer
array
getFunctions
( void
)
This method returns the list of all functions added by SoapServer->addFunction or SoapServer->setClass.
Return Values
The list of all functions.
Examples
Example #1 Some examples
<?php
$server = new SoapServer(NULL, array("uri" => "http://test-uri"));
$server->addFunction(SOAP_FUNCTIONS_ALL);
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$server->handle();
} else {
echo "This SOAP server can handle following functions: ";
$functions = $server->getFunctions();
foreach($functions as $func) {
echo $func . "\n";
}
}
?>
SoapServer->getFunctions
mariuz at gmail dot com
16-Jun-2008 12:21
16-Jun-2008 12:21
