What is Hessian
Hessian is an open source remote communication protocol provided by caucho.
Using binary RPC protocol, based on HTTP transmission, there is no need to open another firewall port on the server side.
The specification of the protocol is public and can be used in any language.
Use client/server mode.
The requester is a client, and the service provider is a server.
The client calling process sends a calling message with process parameters to the service process, and then waits for the response message.
On the server side, the process remains in sleep state until the call information arrives.
When a call message arrives, the server obtains the process parameters, calculates the result, sends a reply message, and then waits for the next call message. Finally, the client calls the process to receive the reply message,
obtains the process result, and then the call execution continues .
Hessian protocol workflow chart
Client program requests server function
1. Call the client handle and execute the transmission parameters.
2. Call the local system kernel to send network messages.
3. The message is sent to the remote host.
4. The server handle gets the message and gets the parameters.
5. Execute remote process.
The server function returns the result to the client
1. The execution process returns the result to the server handle.
2. The server handle returns the result and calls the remote system kernel.
3. The message is sent back to the local host.
4. The client handle receives messages from the kernel.
5. The client receives the data returned by the handle.
With source code explanation
1. Reference the configuration file, including the website root directory and the address of Hessian.
/**
* File name : config.php
* Purpose : Hessian configuration file
*
* @package system.core.code applied to the whole site
* @copyright Copyright (c) 2012
* @since 1.0
*/
//Root directory
define( 'PATH' , dirname(__FILE__) . DIRECTORY_SEPARATOR );
// Hessian Url address
define( 'HESSIAN_URL' , 'http://qx.com/server.php' );
// IDE: Zend Studio 9.0
// IDE Extension: Toggle Vrapper
?>
2. Configure the server.
/**
* File name : server.php
*
* References :
* 1.http://hessian.caucho.com/ (Hessian homepage)
* 2.http:/ /hessianphp.sourceforge.net/ (Hessian PHP)
* 3.http://sourceforge.net/projects/hessianphp/ (Hessian PHP open source)
* 4.http://baike.baidu.com/ view/1859857.htm (single case mode)
*
* @author wubaiqing
* @package system.core applied to the whole site
* @copyright Copyright (c) 2012
* @since 1.0
*/
require_once ( dirname(__FILE__) . DIRECTORY_SEPARATOR . 'config.php' );
require_once ( PATH . 'extensions/HessianPHP/HessianService.php' );
class HessianServer
{
public function __construct() {}
/**
* Product details API interface
* @param string $title title
* @param int $price price
*/
public function goodsInfomationApi( $title , $price ) {
$price = (int) $price;
return '
Use Hessian protocol to call remote Method.
Title:' . $title . 'Price:'.$price;
}
}
$server = new HessianService( new HessianServer() );
//$server->displayInfo();
$server->handle();
// IDE: Zend Studio 9.0
// IDE Extension: Toggle Vrapper
?>
3. You can check how many communication methods are enabled through the displayInfo method in the HessianService class.
If you need to use the handle method to build the server, if the Hessian Requires POST prompt appears, the server has been built successfully.
4. Encapsulate Hessian interface
/**
* 类名 : HessianApi
*
* 参考资料 :
* 1.http://hessian.caucho.com/ ( Hessian主页 )
* 2.http://hessianphp.sourceforge.net/ ( Hessian PHP )
* 3.http://sourceforge.net/projects/hessianphp/ ( Hessian PHP开源 )
* 4.http://baike.baidu.com/view/1859857.htm ( 单例模式 )
*
* @author wubaiqing
* @package system.core applied to the whole site
* @copyright Copyright (c) 2012
* @since 1.0
*/
class HessianApi
{
/**
* @var string 接口地址
*/
private $_url = NULL;
/**
* @var result 句柄
*/
private $_handle = NULL;
/**
* @var array 存放单例模式数组
*/
private static $_objects = array();
/**
* 设置URL地址
* 实例化HessianClient类
* 参数 : (1) url地址 , 2
*
* 2.Java调用字段
* @param string $url
*/
public function __construct( $url )
{
$this->setUrl( $url );
$handler = new HessianClient ( $this->getUrl (), $this->getOptions () );
$this->setHandler ( $handler );
}
/**
* @return result $_handle 句柄
*/
public function getHandler() {
return $this->_handle;
}
/**
* 设置句柄
* @param result $_handle
*/
public function setHandler($_handle) {
$this->_handle = $_handle;
}
/**
* 获取URL地址
*/
public function getUrl() {
return $this->_url;
}
/**
* 设置URL地址
* @param string $url
*/
public function setUrl($url) {
$this->_url = $url;
}
/**
* typeMap映射Java等平台对象
* @return array
*/
public function getOptions() {
return array (
'version' => 1,
'saveRaw' => TRUE,
'typeMap' => array(
'JavaNullPointException' => 'java.lang.NullPointerException' ,
'StackTraceElement' => 'java.lang.StackTraceElement')
);
}
/**
* 记录接口调用信息
* @param string $method 调用的方法
* @param string $returnMsg 需要记入log的文字信息
*/
public function resultLog( $method , $returnMsg )
{
$logPath = PATH.'/runtime/hessian/';
if( !is_dir( $logPath ) ) {
mkdir($logPath,0777);
}
error_log(date('Ymd H:i:s', time()) . '|' . $method . '|' . $returnMsg."\n", 3, $logPath . date('Y-m-d', time()) . '.log');
}
/**
* Static factory method, generates a unique instance of a single URL
* @param string $url
*/
public static function start( $url )
{
$key = md5( $url );
if ( isset(self: ; ;
return self::$_objects[$key];
class JavaNullPointException extends Exception {}
class StackTraceElement extends Exception {}
// IDE: Zend Studio 9.0
// IDE Extension: Toggle Vrapper
?>
5. Encapsulate the client request method and inherit the HessianApi class
The code is as follows:
* @package system.core.code applied to the whole site
* @copyright Copyright (c) 2012
* @since 1.0
*/
class Goods extends HessianApi
{
/**
* Set interface address
* @param string $url
* /
public function __construct( $url ) {
parent::__construct( $url );
}
/**
* Get product information
* Call the goodsInfomationApi method in the server.php file
* @param string $title title
* @param string $title price
*/ public function getGoodsInfomation( $title, $price )
{
// If you call the hessian service of the java platform, you need to specify the type of parameters you pass, especially Integers and strings.
$price = (int) $price;
$result = $this->getHandler()->goodsInfomationApi( $title, $price);
$ this->resultLog( 'getGoodsInfomation' , 'Access interface, but the interface is not logically verified.');
// IDE: Zend Studio 9.0
// IDE Extension: Toggle Vrapper
?>
6. Modify index.php to request the server interface
Copy code
The code is as follows:
/**
* File name: index.php*
* @package system.core applied to the whole site
* @copyright Copyright (c) 2012
* @since 1.0
*/
require_once ( dirname(__FILE__) . DIRECTORY_SEPARATOR .'config.php' );
// Hessian extension and configuration files
require_once (PATH . 'extensions/HessianPHP/HessianClient.php' );
require_once (PATH . 'class/HessianApi.php' );
// Call server.php method
require_once (PATH . 'class/Goods.php');
// Request the interface to obtain data
$goods = new Goods( HESSIAN_URL );
//Set product title and price.
$title = 'Beijing Mobile Recharge Platform';
$price = '50';
//Request Hessian protocol
$goodsInfo = $goods->getGoodsInfomation( (string) $title , (int) $price );
echo ( $goodsInfo );
// IDE Extension: Toggle Vrapper
?>

1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

Django框架是一种用于Web应用程序的Python框架,它提供了一个简单而强大的方式来创建Web应用程序。事实上,Django已经成为当前最受欢迎的PythonWeb开发框架之一,也成为很多公司的首选,包括Instagram和Pinterest。本文将深入探讨Django框架是什么,包括基础概念和重要组件,以及具体代码示例。Django基础概念Djan

作为一个流行的PHP框架,Laravel提供了许多便捷的请求方法来处理不同类型的HTTP请求。其中,Head请求方法是一个比较特殊且常被忽视的方法。在本文中,我们将深入探讨Laravel中Head请求方法的作用、用法和示例代码。什么是Head请求方法?Head请求方法是HTTP协议中定义的一种请求方法,在发送Head请求时,服务器将仅返回请求头信息,而不会返

Go语言是一门由Google开发的编程语言,具有高效、简洁、并发性强等特点。它在语法结构、包管理、高级特性等方面都有很大的优势,因此备受程序员青睐。然而,在实际开发中,很多项目会涉及到与传统的编程语言C进行交互,因此Go语言与C语言的兼容性就显得尤为重要。首先,我们来谈谈Go语言与C语言的兼容性。在Go语言中,可以通过CGo将Go语言与C语言进行交互。CGo

Go语言作为一种现代化的编程语言,以其简洁高效的特性在近年来受到越来越多开发者的喜爱和青睐。其中一个让人独特的地方就是其单线程特性。在传统的多线程编程语言中,开发者通常需要手动管理线程之间的同步和互斥,而在Go语言中,借助其独特的协程(Goroutine)和通信机制(channel),可以方便且高效地实现并发编程。一、Goroutine与单线程:Go语言中的

Golang是一种由谷歌开发的编程语言,其出色的性能和并发特性使其在各种领域中得到了广泛的应用,包括网络编程、大数据处理等。然而,对于一些需要直接操作硬件的领域,比如驱动程序开发,人们可能会开始思考:Golang是否适合用于编写驱动程序呢?本文将深入探讨这个问题,并通过具体的代码示例来展示Golang在驱动程序开发中的应用。首先,让我们来了解一下什么是驱动程

Linux操作系统作为一种常用的开源操作系统,具有强大的可定制性和灵活性。在使用Linux系统时,我们经常会遇到各种特殊字符的处理。这些特殊字符在命令行中具有特殊的含义,能够实现很多高级功能。本文将深入探讨Linux中常见的特殊字符,并结合具体的代码示例来详细介绍它们的用法。通配符:通配符是用来匹配文件名的特殊字符,常见的通配符包括*、?、[]等。下面是几种

Golang的本质是脚本语言还是编译语言?探讨Golang,也被称为Go语言,是一种由Google开发的静态类型编程语言。自诞生以来,Golang一直备受开发者关注,其优秀的并发性能、简洁的语法和跨平台特性使其在各个领域得到广泛应用。然而,关于Golang到底是脚本语言还是编译语言,却一直存在着争议。脚本语言和编译语言在运行时的不同方式给人们留下了深刻的印象


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
