Hessian

From Resin 3.0

Jump to: navigation, search


The Hessian binary web service protocol makes web services usable without requiring a large framework, and without learning yet another alphabet soup of protocols. Because it is a binary protocol, it is well-suited to sending binary data without any need to extend the protocol with attachments.

Contents

  • 1 Hessian Downloads
  • 2 The Hessian name
  • 3 Hessian Java API Overview
    • 3.1 Sample Java Client
  • 4 Specifications
  • 5 Language Implementations
    • 5.1 .NET C#
    • 5.2 Objective-C
    • 5.3 Objective-C 2.0
    • 5.4 PHP
    • 5.5 Ruby
  • 6 Links
    • 6.1 Dinamica
    • 6.2 Spring Framework
    • 6.3 RIFE

Hessian Downloads

See www.caucho.com/hessian for the current downloadable Java versions.

The Hessian name

Hessian was named after Hessian cloth, which is the British term for Burlap, and the binary Hessian protocol derives from Caucho's XML Burlap protocol.

The name burlap was originally chosen since burlap is a practical, simple, and useful, but extremely ordinary material, reflecting the design goals for the two protocols. Other RPC and web service protocols may strive for excitement and world domination; Hessian just gets things done.

Hessian Java API Overview

Main article: Hessian Java API Overview

Sample Java Client

   String url = "www.caucho.com/hessian/test/basic";

   HessianProxyFactory factory = new HessianProxyFactory();
   Basic basic = (Basic) factory.create(Basic.class, url);

   System.out.println("hello(): " + basic.hello());

Specifications

Hessian 1.0.1 spec

Hessian 1.0 Grammar - quick, terse summary of the protocol

Hessian 2.0 Grammar - draft proposal for Hessian 2.0

Language Implementations

.NET C#

Microsoft .NET compatible version of HessianC# is available under the LGPL by Dimitri Minich, Vitaliy Byelyenkiy and Andre Voltmann

See www.hessiancsharp.org/


Objective-C

Main article: Hessian: Objective-C

Byron Wright has released of Hessian for Objective-C at www.bluebearstudio.com/hessianobjc/

Objective-C 2.0

Fredrik Olsson of Jayway AB has released a Hessian implementation for Objective-C 2.0. For use with iPhone OS 2.0 and Mac OS X 10.5 and later.

Main article: Hessian - Objective-C 2.0 Implementation

See sourceforge.net/projects/hessiankit

PHP

A PHP implementation of Hessian is available under the GPL at hessianphp.sourceforge.net by Manolo Gómez.

Also see www.hessianphp.org/wiki/index.php

Ruby

Main article: Hessian - Ruby Implementation

Christer Sandberg has implemented a Ruby Hessian client at rubyforge.org/projects/hessian:

"I just wanted to inform you all that I have made another Ruby Hessian client. It has support for chunks for both strings, xml and binary data and it provides proper encoding and decoding for UTF-8."


Pankaj Mishra has implemented a Ruby Hessian client at sourceforge.net/projects/hessianruby under the LGPL.

Links

hessian.caucho.com

Dinamica

Technical article about integrating Hessian with our open source J2EE framework "Dinamica"

dinamica-hessian.pdf

The article explains how to return disconnected recordsets (a Dinamica feature) using a Hessian service. In the example, a customer record, all its orders and the detail records for every order are returned using a single recordset and a very simple hessian service.

Former MTS/COM+/VB6 programmers will recognize this technique.

Spring Framework

The Spring Framework includes support for Hessian. The Spring Manual provides an overview.

RIFE

RIFE aims to offer a viable solution for rapid web application development in Java without being troubled by the complex implications of J2EE. RIFE offers an alternative approach to web application development and design. It builds upon the Java platform, but offers all required tools and APIs to implement and perform all common website related tasks in a fast, intuitive and consistent manner.

RIFE has a page describing its [rifers.org/wiki/display/RIFE/Support+for+Hessian+web+services support for Hessian web services].

Retrieved from "wiki3.caucho.com/index.php?title=Hessian&oldid=3377"
Views
  • Page
  • Discussion
  • View source
  • History
Personal tools
  • Log in
Navigation
  • Main Page
  • Recent changes
  • Random page
  • Help
Toolbox
  • What links here
  • Related changes
  • Special pages
  • Printable version
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.