php hessian详细介绍

一、看到这个单词我还不知道怎么读,音标是[hes]读黑森.

hessian是一个轻量级的远程的数据交换工具,使用简单的方法提供了rmi(远程方法调用)的功能,相比webservice,hessian更简单、快捷,采用的是二进制rpc协议,因为采用的是二进制协议,所以它很适合于发送二进制数据.

hessian是独立于语言的.

二、在php中怎么用的呢?

你是不是认为这个和soap一样在php.ini中开启一个就可以使用了,我也这么认为的,可 是我要告诉你的是这样的想法是错误的.

需要去下载一个hessianphp的库来使用,下载地址http://hessianphp.sourceforge.net/

三、看看怎么使用

1、服务器端,代码如下:

  1. <?php
  2. include_once('hessianphp/dist/hessianservice.php');
  3. class helloworldservice
  4. {
  5. public function __construct()
  6. {
  7. }
  8. public function add($a, $b)
  9. { //开源代码phpfensi.com
  10. return $a+$b;
  11. }
  12. }
  13. $wrapper = new hessianservice();
  14. $wrapper->registerobject(new helloworldservice);
  15. $wrapper->displayinfo = true;
  16. $wrapper->service();
  17. ?>

2、客户端,代码如下:

  1. <?php
  2. require_once 'hessianphp/dist/hessianclient.php';
  3. hessian::errorreporting(hessian_silent);
  4. $url = 'http://localhost/info.php';
  5. $proxy = & new hessianclient($url);
  6. $sum = $proxy->add(3, 5);
  7. echo $sum;
  8. if(hessian::error()) {
  9. $errors = hessian::error();
  10. print_r($erros->message);
  11. //var_dump($errors);
  12. } //开源代码phpfensi.com
  13. ?>