Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
14
Task/SOAP/PHP/soap.php
Normal file
14
Task/SOAP/PHP/soap.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
//load the wsdl file
|
||||
$client = new SoapClient("http://example.com/soap/definition.wsdl");
|
||||
//functions are now available to be called
|
||||
$result = $client->soapFunc("hello");
|
||||
$result = $client->anotherSoapFunc(34234);
|
||||
|
||||
//SOAP Information
|
||||
$client = new SoapClient("http://example.com/soap/definition.wsdl");
|
||||
//list of SOAP types
|
||||
print_r($client->__getTypes());
|
||||
//list if SOAP Functions
|
||||
print_r($client->__getFunctions());
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue