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) { WebFormTable._staticInstance._path = value; }
WebFormTable.get_path = function() { return WebFormTable._staticInstance._path; }
WebFormTable.set_timeout = function(value) { 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) { WebFormTable._staticInstance._succeeded = value; }
WebFormTable.get_defaultSucceededCallback = function() { return WebFormTable._staticInstance._succeeded; }
WebFormTable.set_defaultFailedCallback = function(value) { 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); }
