var PulseWebService=function() {
PulseWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PulseWebService.prototype={
SetSessionVar:function(varname,varvalue,succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'SetSessionVar',false,{varname:varname,varvalue:varvalue},succeededCallback,failedCallback,userContext); },
SaveHeadLiner:function(postguid,posthtml,succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'SaveHeadLiner',false,{postguid:postguid,posthtml:posthtml},succeededCallback,failedCallback,userContext); },
UpdatePost:function(clear,postguid,posthtml,postheader,postdate,succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'UpdatePost',false,{clear:clear,postguid:postguid,posthtml:posthtml,postheader:postheader,postdate:postdate},succeededCallback,failedCallback,userContext); },
SavePost:function(postguid,posthtml,postheader,postdate,succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'SavePost',false,{postguid:postguid,posthtml:posthtml,postheader:postheader,postdate:postdate},succeededCallback,failedCallback,userContext); },
SetViewScope:function(postguid,scope,succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'SetViewScope',false,{postguid:postguid,scope:scope},succeededCallback,failedCallback,userContext); },
ToggleLock:function(postrID,locked,succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'ToggleLock',false,{postrID:postrID,locked:locked},succeededCallback,failedCallback,userContext); },
GetUploadedFileName:function(succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'GetUploadedFileName',false,{},succeededCallback,failedCallback,userContext); },
ClearUploadedFileName:function(succeededCallback, failedCallback, userContext) {
return this._invoke(PulseWebService.get_path(), 'ClearUploadedFileName',false,{},succeededCallback,failedCallback,userContext); }}
PulseWebService.registerClass('PulseWebService',Sys.Net.WebServiceProxy);
PulseWebService._staticInstance = new PulseWebService();
PulseWebService.set_path = function(value) { PulseWebService._staticInstance._path = value; }
PulseWebService.get_path = function() { return PulseWebService._staticInstance._path; }
PulseWebService.set_timeout = function(value) { PulseWebService._staticInstance._timeout = value; }
PulseWebService.get_timeout = function() { return PulseWebService._staticInstance._timeout; }
PulseWebService.set_defaultUserContext = function(value) { PulseWebService._staticInstance._userContext = value; }
PulseWebService.get_defaultUserContext = function() { return PulseWebService._staticInstance._userContext; }
PulseWebService.set_defaultSucceededCallback = function(value) { PulseWebService._staticInstance._succeeded = value; }
PulseWebService.get_defaultSucceededCallback = function() { return PulseWebService._staticInstance._succeeded; }
PulseWebService.set_defaultFailedCallback = function(value) { PulseWebService._staticInstance._failed = value; }
PulseWebService.get_defaultFailedCallback = function() { return PulseWebService._staticInstance._failed; }
PulseWebService.set_path("/PulseWebService.asmx");
PulseWebService.SetSessionVar= function(varname,varvalue,onSuccess,onFailed,userContext) {PulseWebService._staticInstance.SetSessionVar(varname,varvalue,onSuccess,onFailed,userContext); }
PulseWebService.SaveHeadLiner= function(postguid,posthtml,onSuccess,onFailed,userContext) {PulseWebService._staticInstance.SaveHeadLiner(postguid,posthtml,onSuccess,onFailed,userContext); }
PulseWebService.UpdatePost= function(clear,postguid,posthtml,postheader,postdate,onSuccess,onFailed,userContext) {PulseWebService._staticInstance.UpdatePost(clear,postguid,posthtml,postheader,postdate,onSuccess,onFailed,userContext); }
PulseWebService.SavePost= function(postguid,posthtml,postheader,postdate,onSuccess,onFailed,userContext) {PulseWebService._staticInstance.SavePost(postguid,posthtml,postheader,postdate,onSuccess,onFailed,userContext); }
PulseWebService.SetViewScope= function(postguid,scope,onSuccess,onFailed,userContext) {PulseWebService._staticInstance.SetViewScope(postguid,scope,onSuccess,onFailed,userContext); }
PulseWebService.ToggleLock= function(postrID,locked,onSuccess,onFailed,userContext) {PulseWebService._staticInstance.ToggleLock(postrID,locked,onSuccess,onFailed,userContext); }
PulseWebService.GetUploadedFileName= function(onSuccess,onFailed,userContext) {PulseWebService._staticInstance.GetUploadedFileName(onSuccess,onFailed,userContext); }
PulseWebService.ClearUploadedFileName= function(onSuccess,onFailed,userContext) {PulseWebService._staticInstance.ClearUploadedFileName(onSuccess,onFailed,userContext); }

