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/zopetest.php

32 lines
836 B
PHP

<html>
<head><title>xmlrpc</title></head>
<body>
<h1>Zope test demo</h1>
<h3>The code demonstrates usage of basic authentication to connect to the server</h3>
<?php
include("xmlrpc.inc");
$f = new xmlrpcmsg('document_src', array());
$c = new xmlrpc_client("/index_html", "pingu.heddley.com", 9080);
$c->setCredentials("username", "password");
$c->setDebug(2);
$r = $c->send($f);
if(!$r->faultCode())
{
$v = $r->value();
print "I received:" . htmlspecialchars($v->scalarval()) . "<br/>";
print "<hr/>I got this value back<br/>pre>" .
htmlentities($r->serialize()). "</pre>\n";
}
else
{
print "An error occurred: ";
print "Code: " . htmlspecialchars($r->faultCode())
. " Reason: '" . ($r->faultString()) . "'<br/>";
}
?>
<hr/>
<em>$Id: zopetest.php,v 1.5 2006/12/28 16:10:42 milosch Exp $</em>
</body>
</html>