git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
32 lines
836 B
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>
|