1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
if(!dojo._hasResource["dojox.rpc.JsonRPC"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.rpc.JsonRPC"] = true;
dojo.provide("dojox.rpc.JsonRPC");
dojox.rpc.envelopeRegistry.register(
"JSON-RPC-1.0",function(str){return str == "JSON-RPC-1.0"},{
serialize: function(smd, method, data, options){
//not converted to json it self. This will be done, if appropriate, at the
//transport level
var d = dojox.rpc.toOrdered(method, data);
d = dojox.rpc.toJson({id: this._requestId++, method: method.name, params: d});
return {
data: d,
contentType: 'application/json',
transport:"POST"
}
},
deserialize: function(results){
var obj = dojox.rpc.resolveJson(results);
if (obj.error) {
var e = new Error(obj.error);
e._rpcErrorObject = obj.error;
return e;
}
return obj.result || true;
}
}
);
dojox.rpc.envelopeRegistry.register(
"JSON-RPC-1.2",function(str){return str == "JSON-RPC-1.2"},{
serialize: function(smd, method, data, options){
var trans = method.transport || smd.transport || "POST";
var d = dojox.rpc.toNamed(method, data);
d = dojox.rpc.toJson({id: this._requestId++, method: method.name, params: data});
return {
data: d,
contentType: 'application/json',
transport:"POST"
}
},
deserialize: function(results){
var obj = dojox.rpc.resolveJson(results);
if (obj.error) {
var e = new Error(obj.error.message);
e._rpcErrorObject = obj.error;
return e;
}
return obj.result || true;
}
}
);
}
|