// 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 (productService == null) var productService = {}; productService._path = '/website/dwr'; productService.saveProduct = function(p0, callback) { dwr.engine._execute(productService._path, 'productService', 'saveProduct', p0, callback); } productService.deleteProductById = function(p0, callback) { dwr.engine._execute(productService._path, 'productService', 'deleteProductById', p0, callback); } productService.getUsingProductsContent = function(p0, p1, p2, callback) { dwr.engine._execute(productService._path, 'productService', 'getUsingProductsContent', p0, p1, p2, callback); }