我正在探索使用XMLRPC服务在Drupal系统和我们网站的另一部分之间进行通信。我找到了PHP的php_xmlrpc扩展的一些示例代码,但发现我们的Web主机不支持该扩展。
相反,它们提供了PEAR XML_RPC包
看来两种方法的编码方式截然不同。
我用于根据http://drupal.org/node/339845
设置请求的PHP代码$method_name = 'user.login';
$user_credentials = array(
0 => 'example.user',
1 => 'password',
);
// any user-defined arguments for this service
// here we use the login credentials we specified at the top of the script
$user_args = $user_credentials;
$required_args=array();
// add the arguments to the request
foreach ($user_args as $arg) {
array_push($required_args, $arg);
}
...then call the XMLRPC functions here...
我在我的电脑上用WAMPserver测试了php_xmlrpc,从php_xmlrpc函数xmlrpc_encode_request(http://us.php.net/manual/en/function.xmlrpc-encode-request.php)返回我需要的内容,如下所示:
<?xml version="1.0" encoding="iso-8859-1"?>
<methodCall>
<methodName>user.login</methodName>
<params>
<param>
<value>
<string>example.user</string>
</value>
</param>
<param>
<value>
<string>password</string>
</value>
</param>
</params>
</methodCall>
而PEAR XML_RPC_encode()函数返回:
Array
(
[0] => example.user
[1] => password
)
object(XML_RPC_Value)#1 (2) {
["me"]=>
array(1) {
["string"]=>
string(10) "user.login"
}
["mytype"]=>
int(1)
}
PEAR XML_RPC中是否有另一个可以将参数编码为XML的函数?
答案 0 :(得分:1)
该文档可从http://pear.php.net/manual/en/package.webservices.xml-rpc.api.php
获取要获取XML编组输出,首先要构造一条消息,然后使用->serialize()
方法:
$msg = new XML_RPC_Message("function", array(new XML_RPC_Value(123, "int")));
print $msg->serialize();
你的XML_RPC_encode()
函数用于将普通的php数组包装到这些XML_RPC_*
个对象中。
但很明显,PEAR类主要用于处理原始数据转换的XML_RPC_Client
接口。