XMLRPC showing -32601 error (using PHP)
问题 I have the following code... <?php include("lib/xmlrpc.inc"); $email='whatever@hotmail.com'; $c=new xmlrpc_client("/register/index.php", "ws.myserver.com", 80); $f=new xmlrpcmsg('existsEmail', array(new xmlrpcval($email, "base64"))); print "<pre>" . htmlentities($f->serialize( )) . "</pre>"; $r=$c->send($f); $v=$r->value( ); if (!$r->faultCode( )) { print "Email is". $email . " is " . $v->scalarval( ) . "<br />"; print "<hr />I got this value back<br /><pre>" . htmlentities($r->serialize( )).