This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/thirdparty/xmlrpc-2.2/demo/client/wrap.php

59 lines
1.8 KiB
PHP

<html>
<head><title>xmlrpc</title></head>
<body>
<h1>Webservice wrappper demo</h1>
<h2>Wrap methods exposed by server into php functions</h2>
<h3>The code demonstrates usage of the most automagic client usage possible:<br/>
1) client that returns php values instead of xmlrpcval objects<br/>
2) wrapping of remote methods into php functions
</h3>
<?php
include("xmlrpc.inc");
include("xmlrpc_wrappers.inc");
$c = new xmlrpc_client("/server.php", "phpxmlrpc.sourceforge.net", 80);
$c->return_type = 'phpvals'; // let client give us back php values instead of xmlrpcvals
$r =& $c->send(new xmlrpcmsg('system.listMethods'));
if($r->faultCode())
{
echo "<p>Server methods list could not be retrieved: error '".htmlspecialchars($r->faultString())."'</p>\n";
}
else
{
$testcase = '';
echo "<p>Server methods list retrieved, now wrapping it up...</p>\n<ul>\n";
foreach($r->value() as $methodname) // $r->value is an array of strings
{
// do not wrap remote server system methods
if (strpos($methodname, 'system.') !== 0)
{
$funcname = wrap_xmlrpc_method($c, $methodname);
if($funcname)
{
echo "<li>Remote server method ".htmlspecialchars($methodname)." wrapped into php function ".$funcname."</li>\n";
}
else
{
echo "<li>Remote server method ".htmlspecialchars($methodname)." could not be wrapped!</li>\n";
}
if($methodname == 'examples.getStateName')
{
$testcase = $funcname;
}
}
}
echo "</ul>\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);
}
}
?>
<hr/>
<em>$Id: wrap.php,v 1.3 2006/12/28 16:10:42 milosch Exp $</em>
</body>
</html>