/**
* 获取商品信息
* 调用server.php文件中的goodsInfomationApi方法
* @param string $title 标题
* @param string $title 价格
*/
public function getGoodsInfomation( $title , $price )
{
// 如果调用java平台的hessian服务 需要指定你传递参数的类型,特别是整形和字符串.
$price = (int) $price;
$result = $this->getHandler()->goodsInfomationApi( $title , $price );
$this->resultLog( 'getGoodsInfomation' , '访问接口,但接口没有进行逻辑验证.');
return $result;
}
}
// IDE : Zend Studio 9.0
// IDE Extension : Toggle Vrapper
?>
6.修改index.php可以请求服务端接口
复制代码 代码如下:
<?php
/**
* 文件名 : index.php
*
* 参考资料 :
* 1. ( Hessian主页 )
* 2. ( Hessian PHP )
* 3. ( Hessian PHP开源 )
* 4. ( 单例模式 )
*
* @author wubaiqing <xinxiangmo@gmail.com>
* @package system.core applied to the whole site
* @copyright Copyright (c) 2012
* @since 1.0
*/
require_once ( dirname(__FILE__) . DIRECTORY_SEPARATOR .'config.php' );
// Hessian 扩展及配置文件
require_once ( PATH . 'extensions/HessianPHP/HessianClient.php' );
require_once ( PATH . 'class/HessianApi.php' );
// 调用 server.php 方法
require_once ( PATH . 'class/Goods.php');
// 请求接口获取数据
$goods = new Goods( HESSIAN_URL );
// 设置商品标题 , 价格.
$title = '北京移动充值平台';
$price = '50';
// 请求Hessian协议
$goodsInfo = $goods->getGoodsInfomation( (string) $title , (int) $price );
// 打印请求结果
echo ( $goodsInfo );
// IDE : Zend Studio 9.0
// IDE Extension : Toggle Vrapper
?>