According to the docs, RPCRequest is a Class. However, it does not seem to support .setProperty. Also, DSRequest, which extends RPCRequest does not support the .create() method.
So, are these really Classes in the isc class system, If so, why don't the Class methods work? Or are they Objects?
Code:
var req = isc.RPCRequest.create(); // <-- works. req.setProperty("data" ,"asdf"); // Error: req.setProperty is not a function var dsReq = isc.DSRequest.create(); // Error: Cannot read property 'create' of undefined
Comment