<?php include_once('HessianPHP/dist/HessianService.php'); class HelloWorldService { public function __construct() { } public function add($a, $b) { return $a+$b; } } $wrapper = new HessianService(); $wrapper->registerObject(new HelloWorldService); $wrapper->displayInfo = true; $wrapper->service(); ?>