Packagehessian.client
Classpublic dynamic class HessianService
InheritanceHessianService Inheritance mx.rpc.AbstractService
SubclassesHessianService

The HessianService class provides access to Hessian-based web services on remote servers.

See also

hessian.client.HessianOperation
hessian.mxml.HessianService


Public Properties
 PropertyDefined by
  api : String
The API associated with this HessianService, if any.
HessianService
Public Methods
 MethodDefined by
  
HessianService(destination:String = null, api:Class = null)
Constructor.
HessianService
  
getOperation(name:String):AbstractOperation
Retrieves a HessianOperation by name, creating one if it does not already exist.
HessianService
Property detail
apiproperty
api:String  [read-write]

The API associated with this HessianService, if any.

This property can be used as the source for data binding.

Implementation
    public function get api():String
    public function set api(value:String):void
Constructor detail
HessianService()constructor
public function HessianService(destination:String = null, api:Class = null)

Constructor.

Parameters
destination:String (default = null) — The URL of the destination service.
 
api:Class (default = null) — The API associated with this HessianService, if any.
Method detail
getOperation()method
public override function getOperation(name:String):AbstractOperation

Retrieves a HessianOperation by name, creating one if it does not already exist.

Parameters
name:String — The name of the operation

Returns
AbstractOperation — The HessianOperation named by name.