Add 'php/phpxmlrpc/' from commit 'cd5dbb4a511e7a616a61187a5de1a611a9748cbd'
[plcapi.git] / php / phpxmlrpc / demo / client / wrap.php
1 <html>
2 <head><title>xmlrpc - Webservice wrappper demo</title></head>
3 <body>
4 <h1>Webservice wrappper demo</h1>
5
6 <h2>Wrap methods exposed by server into php functions</h2>
7
8 <h3>The code demonstrates usage of some the most automagic client usage possible:<br/>
9     1) client that returns php values instead of xmlrpc value objects<br/>
10     2) wrapping of remote methods into php functions<br/>
11     See also proxy.php for an alternative take
12 </h3>
13 <?php
14
15 include_once __DIR__ . "/../../src/Autoloader.php";
16 PhpXmlRpc\Autoloader::register();
17
18 $client = new PhpXmlRpc\Client("http://phpxmlrpc.sourceforge.net/server.php");
19 $client->return_type = 'phpvals'; // let client give us back php values instead of xmlrpcvals
20 $resp = $client->send(new PhpXmlRpc\Request('system.listMethods'));
21 if ($resp->faultCode()) {
22     echo "<p>Server methods list could not be retrieved: error {$resp->faultCode()} '" . htmlspecialchars($resp->faultString()) . "'</p>\n";
23 } else {
24     echo "<p>Server methods list retrieved, now wrapping it up...</p>\n<ul>\n";
25     flush();
26
27     $callable = false;
28     $wrapper = new PhpXmlRpc\Wrapper();
29     foreach ($resp->value() as $methodName) {
30         // $resp->value is an array of strings
31         if ($methodName == 'examples.getStateName') {
32             $callable = $wrapper->wrapXmlrpcMethod($client, $methodName);
33             if ($callable) {
34                 echo "<li>Remote server method " . htmlspecialchars($methodName) . " wrapped into php function</li>\n";
35             } else {
36                 echo "<li>Remote server method " . htmlspecialchars($methodName) . " could not be wrapped!</li>\n";
37             }
38             break;
39         }
40     }
41     echo "</ul>\n";
42     flush();
43
44     if ($callable) {
45         echo "Now testing function for remote method to convert U.S. state number into state name";
46         $stateNum = rand(1, 51);
47         // the 2nd parameter gets added to the closure - it is teh debug level to be used for the client
48         $stateName = $callable($stateNum, 2);
49     }
50 }
51 ?>
52 </body>
53 </html>