Type.registerNamespace('PSCPortal');
PSCPortal.CMSService=function() {
PSCPortal.CMSService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PSCPortal.CMSService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PSCPortal.CMSService._staticInstance.get_path();},
GetArticleTooltip:function(articleId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetArticleTooltip',false,{articleId:articleId},succeededCallback,failedCallback,userContext); },
GetMenuInfo:function(dataId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMenuInfo',false,{dataId:dataId},succeededCallback,failedCallback,userContext); },
GetMenuChild:function(parentId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMenuChild',false,{parentId:parentId},succeededCallback,failedCallback,userContext); }}
PSCPortal.CMSService.registerClass('PSCPortal.CMSService',Sys.Net.WebServiceProxy);
PSCPortal.CMSService._staticInstance = new PSCPortal.CMSService();
PSCPortal.CMSService.set_path = function(value) { PSCPortal.CMSService._staticInstance.set_path(value); }
PSCPortal.CMSService.get_path = function() { return PSCPortal.CMSService._staticInstance.get_path(); }
PSCPortal.CMSService.set_timeout = function(value) { PSCPortal.CMSService._staticInstance.set_timeout(value); }
PSCPortal.CMSService.get_timeout = function() { return PSCPortal.CMSService._staticInstance.get_timeout(); }
PSCPortal.CMSService.set_defaultUserContext = function(value) { PSCPortal.CMSService._staticInstance.set_defaultUserContext(value); }
PSCPortal.CMSService.get_defaultUserContext = function() { return PSCPortal.CMSService._staticInstance.get_defaultUserContext(); }
PSCPortal.CMSService.set_defaultSucceededCallback = function(value) { PSCPortal.CMSService._staticInstance.set_defaultSucceededCallback(value); }
PSCPortal.CMSService.get_defaultSucceededCallback = function() { return PSCPortal.CMSService._staticInstance.get_defaultSucceededCallback(); }
PSCPortal.CMSService.set_defaultFailedCallback = function(value) { PSCPortal.CMSService._staticInstance.set_defaultFailedCallback(value); }
PSCPortal.CMSService.get_defaultFailedCallback = function() { return PSCPortal.CMSService._staticInstance.get_defaultFailedCallback(); }
PSCPortal.CMSService.set_path("/CMSService.asmx");
PSCPortal.CMSService.GetArticleTooltip= function(articleId,onSuccess,onFailed,userContext) {PSCPortal.CMSService._staticInstance.GetArticleTooltip(articleId,onSuccess,onFailed,userContext); }
PSCPortal.CMSService.GetMenuInfo= function(dataId,onSuccess,onFailed,userContext) {PSCPortal.CMSService._staticInstance.GetMenuInfo(dataId,onSuccess,onFailed,userContext); }
PSCPortal.CMSService.GetMenuChild= function(parentId,onSuccess,onFailed,userContext) {PSCPortal.CMSService._staticInstance.GetMenuChild(parentId,onSuccess,onFailed,userContext); }
