var WebFormTable=function() {
WebFormTable.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebFormTable.prototype={
Save:function(itemId,title,description,replay,succeededCallback, failedCallback, userContext) {
return this._invoke(WebFormTable.get_path(), 'Save',false,{itemId:itemId,title:title,description:description,replay:replay},succeededCallback,failedCallback,userContext); }}
WebFormTable.registerClass('WebFormTable',Sys.Net.WebServiceProxy);
WebFormTable._staticInstance = new WebFormTable();
WebFormTable.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; WebFormTable._staticInstance._path = value; }
WebFormTable.get_path = function() { return WebFormTable._staticInstance._path; }
WebFormTable.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
WebFormTable._staticInstance._timeout = value; }
WebFormTable.get_timeout = function() { 
return WebFormTable._staticInstance._timeout; }
WebFormTable.set_defaultUserContext = function(value) { 
WebFormTable._staticInstance._userContext = value; }
WebFormTable.get_defaultUserContext = function() { 
return WebFormTable._staticInstance._userContext; }
WebFormTable.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; WebFormTable._staticInstance._succeeded = value; }
WebFormTable.get_defaultSucceededCallback = function() { 
return WebFormTable._staticInstance._succeeded; }
WebFormTable.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; WebFormTable._staticInstance._failed = value; }
WebFormTable.get_defaultFailedCallback = function() { 
return WebFormTable._staticInstance._failed; }
WebFormTable.set_path("/WebService/WebFormTable.asmx");
WebFormTable.Save= function(itemId,title,description,replay,onSuccess,onFailed,userContext) {WebFormTable._staticInstance.Save(itemId,title,description,replay,onSuccess,onFailed,userContext); }
