Code: Select all
$client = new SoapClient("http://localhost/mywsdl?WSDL");
print($client->__call(
/* SOAP Method Name */
"isServiceAvailable",
/* Parameters */
NULL
));Moderator: General Moderators
Code: Select all
$client = new SoapClient("http://localhost/mywsdl?WSDL");
print($client->__call(
/* SOAP Method Name */
"isServiceAvailable",
/* Parameters */
NULL
));Code: Select all
$client = new SoapClient("http://localhost/ada_testing/AdaAPI?WSDL")
$client->__soapCall("isAdaAvailable", array());Code: Select all
var_dump($client->__getFunctions());Code: Select all
$client->isAdaAvailable()