Blog  |   Sitemap  |   Search  |   Language:  eng рус
Home
JavaScript GUI FrameworkReference

Object RPCClient

Object that provides RPC client functionality.

Members Table

The following table lists the members exposed by the RPCClient object.

Show:
Properties
Methods
Constants

Examlpes

Following example invokes "mymethod" method with a parameters bag on "path/to/myendpoint" url.
var oClient    = new RPCClient("path/to/myendpoint");
oClient.call("mymethod", {"myparam":"myvalue"}, function(oResult) {
        alert(oResult);
});