X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=demo%2Fclient%2Fwrap.php;h=f1a7e00590b032ba7428015166b0921028e39617;hb=568742e1a2911037c8d164716c138aa2cce74039;hp=458f66889296f1bf85f168fb3d930880c1dc9596;hpb=4c4c28971620235b1a225c106dfad85a87731a25;p=plcapi.git diff --git a/demo/client/wrap.php b/demo/client/wrap.php index 458f668..f1a7e00 100644 --- a/demo/client/wrap.php +++ b/demo/client/wrap.php @@ -1,56 +1,52 @@ -xmlrpc +xmlrpc - Webservice wrappper demo

Webservice wrappper demo

+

Wrap methods exposed by server into php functions

+

The code demonstrates usage of the most automagic client usage possible:
-1) client that returns php values instead of xmlrpcval objects
-2) wrapping of remote methods into php functions + 1) client that returns php values instead of xmlrpc value objects
+ 2) wrapping of remote methods into php functions

return_type = 'phpvals'; // let client give us back php values instead of xmlrpcvals - $r =& $c->send(new xmlrpcmsg('system.listMethods')); - if($r->faultCode()) - { - echo "

Server methods list could not be retrieved: error '".htmlspecialchars($r->faultString())."'

\n"; - } - else - { - $testcase = ''; - echo "

Server methods list retrieved, now wrapping it up...

\n\n"; - if($testcase) - { - echo "Now testing function $testcase: remote method to convert U.S. state number into state name"; - $statenum = 25; - $statename = $testcase($statenum, 2); - echo "State number $statenum is ".htmlspecialchars($statename); - } - } +include_once __DIR__ . "/../../src/Autoloader.php"; +PhpXmlRpc\Autoloader::register(); + +$client = new PhpXmlRpc\Client("http://phpxmlrpc.sourceforge.net/server.php"); +$client->return_type = 'phpvals'; // let client give us back php values instead of xmlrpcvals +$resp = $client->send(new PhpXmlRpc\Request('system.listMethods')); +if ($resp->faultCode()) { + echo "

Server methods list could not be retrieved: error {$resp->faultCode()} '" . htmlspecialchars($resp->faultString()) . "'

\n"; +} else { + $testCase = ''; + $wrapper = new PhpXmlRpc\Wrapper(); + echo "

Server methods list retrieved, now wrapping it up...

\n\n"; + if ($testCase) { + echo "Now testing function $testCase: remote method to convert U.S. state number into state name"; + $stateNum = 25; + $stateName = $testCase($stateNum, 2); + echo "State number $stateNum is " . htmlspecialchars($stateName); + } +} ?>