Hello,
I have be experimenting with dojox.rpc.Service for use with with dojox.data.serviceStores.
However the behaviour of dojox.rpc.Service has changed.
For my example, let:
var rpc = new dojox.rpc.Service("Path/To/SMD");
var store = new dojox.data.ServiceStore({service:rpc.restService, idAttribute:'id'});
where "path/To/SMD" contains a method "restService" which accepts a single integer id attribute. With a URL envelope and REST transport IE:
parameters: [
{
name: 'id',
optional: false,
type: 'integer'}
