// Provide a default path to DWREngine if (DWREngine == null) { var DWREngine = {}; } DWREngine._defaultPath = '/AjaxTest/dwr'; function NameService() { } NameService._path = '/AjaxTest/dwr'; NameService.getNameBeansWithNameLikePrefix = function(p0, callback) { DWREngine._execute(NameService._path, 'NameService', 'getNameBeansWithNameLikePrefix', p0, callback); } NameService.saveName = function(p0, callback) { DWREngine._execute(NameService._path, 'NameService', 'saveName', p0, callback); } NameService.getAllNames = function(callback) { DWREngine._execute(NameService._path, 'NameService', 'getAllNames', callback); }