var SaveWebFormService=function() {
SaveWebFormService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SaveWebFormService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return SaveWebFormService._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
SaveWebForm:function(bizformname,myCol,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SaveWebForm',false,{bizformname:bizformname,myCol:myCol},succeededCallback,failedCallback,userContext); }}
SaveWebFormService.registerClass('SaveWebFormService',Sys.Net.WebServiceProxy);
SaveWebFormService._staticInstance = new SaveWebFormService();
SaveWebFormService.set_path = function(value) { SaveWebFormService._staticInstance.set_path(value); }
SaveWebFormService.get_path = function() { return SaveWebFormService._staticInstance.get_path(); }
SaveWebFormService.set_timeout = function(value) { SaveWebFormService._staticInstance.set_timeout(value); }
SaveWebFormService.get_timeout = function() { return SaveWebFormService._staticInstance.get_timeout(); }
SaveWebFormService.set_defaultUserContext = function(value) { SaveWebFormService._staticInstance.set_defaultUserContext(value); }
SaveWebFormService.get_defaultUserContext = function() { return SaveWebFormService._staticInstance.get_defaultUserContext(); }
SaveWebFormService.set_defaultSucceededCallback = function(value) { SaveWebFormService._staticInstance.set_defaultSucceededCallback(value); }
SaveWebFormService.get_defaultSucceededCallback = function() { return SaveWebFormService._staticInstance.get_defaultSucceededCallback(); }
SaveWebFormService.set_defaultFailedCallback = function(value) { SaveWebFormService._staticInstance.set_defaultFailedCallback(value); }
SaveWebFormService.get_defaultFailedCallback = function() { return SaveWebFormService._staticInstance.get_defaultFailedCallback(); }
SaveWebFormService.set_path("/CMSPages/SaveWebFormService.asmx");
SaveWebFormService.HelloWorld= function(onSuccess,onFailed,userContext) {SaveWebFormService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
SaveWebFormService.SaveWebForm= function(bizformname,myCol,onSuccess,onFailed,userContext) {SaveWebFormService._staticInstance.SaveWebForm(bizformname,myCol,onSuccess,onFailed,userContext); }

