hessian.swc: Hessian client interface for ActionScript 3 (Flash) programs

Jul 19, 2006 23:57


What is Hessian?

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.

And here's my AS3 ( Read more... )

flex, hacks

Leave a comment

Comments 10

hi anonymous July 20 2006, 00:05:14 UTC
how to use? i do't know.
not run e.g code

Reply

Re: hi mannu July 20 2006, 11:03:09 UTC
Just include the .swc in your library path and write code as shown in the example.

Reply


What would you recommend to runthe server side? anonymous July 31 2006, 05:05:08 UTC
I'm hoping that there is something really light... preferably in Ruby so I can get my Flex front-end hooked up to a SQLite backend over the web and not use a bloated protocol like plain text SOAP, but use Hessian's thinner binary SOAP...

Reply


The URL that is passed as the parameter to the constructor... anonymous August 9 2006, 05:39:01 UTC
... is that the URL of the WSDL?

If not - how does it format it's request for the WSDL?

Does it use:

"url_of_service?wsdl"

if you do:

'new HessianProxy("url_of_service");' ?

Reply

Re: The URL that is passed as the parameter to the constructor... mannu August 9 2006, 13:31:54 UTC
There's no WSDL. The URL passed to the constructor is the URL to the Hessian-based service (in this case, a Java servlet). See the Hessian documentation for more.

Reply

Re: The URL that is passed as the parameter to the constructor... anonymous August 10 2006, 04:56:36 UTC
Ahh... thanks a ton!!!

Reply


Version for actionscript2 anonymous September 2 2006, 15:44:09 UTC
It would be nice to have a version of hessian client for actionscript2, is it possible?

Reply


Stinkin' Flex2 Newbie Question anonymous December 14 2006, 13:09:30 UTC
Hi,

I'm trying to use this to get data from a Hessian service into my Flex2 app and when I try to compile your example, I get a compile error

"Access of undefined property token."

I'm trying to include this in a mx:Script block.

Go ahead and mock me (I'm very new to Flex2), but please tell me where I'm going wrong.

p.s. I think the test service at caucho.com is also down.

Reply


Leave a comment

Up