// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; if (RemoteAction == null) var RemoteAction = {}; RemoteAction._path = '/nmr/dwr'; RemoteAction.execute = function(p0, p1, callback) { dwr.engine._execute(RemoteAction._path, 'RemoteAction', 'execute', p0, p1, callback); } RemoteAction.getScriptClassName = function(callback) { dwr.engine._execute(RemoteAction._path, 'RemoteAction', 'getScriptClassName', callback); }