views:

101

answers:

2

Hi,

Spring in Action book says:

Hessian, like RMI, uses binary messages to communicate between client and service. However, unlike other binary remoting technologies (such as RMI), the binary message IS PORTABLE to languages other than Java, including PHP, Python, C++, and C#. (316)

Can you give me some advice how can i get it ? That is, by using PHP, for instance, i can read a Hessian messsage.

+1  A: 

Sure, see 17.3. Using Hessian or Burlap to remotely call services via HTTP in the Spring reference.

cletus
+2  A: 

From the list of Hessian implementations: PHP Implementation of Hessian

matt b
Good to know. Thank you!
Arthur Ronald F D Garcia