Type.registerNamespace('Core.WebServices');
Core.WebServices.Common=function() {
Core.WebServices.Common.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Core.WebServices.Common.prototype={
GetVisitors:function(pageId,succeededCallback, failedCallback, userContext) {
return this._invoke(Core.WebServices.Common.get_path(), 'GetVisitors',false,{pageId:pageId},succeededCallback,failedCallback,userContext); },
CallPlugin:function(Ass,Plugin,args,succeededCallback, failedCallback, userContext) {
return this._invoke(Core.WebServices.Common.get_path(), 'CallPlugin',false,{Ass:Ass,Plugin:Plugin,args:args},succeededCallback,failedCallback,userContext); }}
Core.WebServices.Common.registerClass('Core.WebServices.Common',Sys.Net.WebServiceProxy);
Core.WebServices.Common._staticInstance = new Core.WebServices.Common();
Core.WebServices.Common.set_path = function(value) { Core.WebServices.Common._staticInstance.set_path(value); }
Core.WebServices.Common.get_path = function() { return Core.WebServices.Common._staticInstance.get_path(); }
Core.WebServices.Common.set_timeout = function(value) { Core.WebServices.Common._staticInstance.set_timeout(value); }
Core.WebServices.Common.get_timeout = function() { return Core.WebServices.Common._staticInstance.get_timeout(); }
Core.WebServices.Common.set_defaultUserContext = function(value) { Core.WebServices.Common._staticInstance.set_defaultUserContext(value); }
Core.WebServices.Common.get_defaultUserContext = function() { return Core.WebServices.Common._staticInstance.get_defaultUserContext(); }
Core.WebServices.Common.set_defaultSucceededCallback = function(value) { Core.WebServices.Common._staticInstance.set_defaultSucceededCallback(value); }
Core.WebServices.Common.get_defaultSucceededCallback = function() { return Core.WebServices.Common._staticInstance.get_defaultSucceededCallback(); }
Core.WebServices.Common.set_defaultFailedCallback = function(value) { Core.WebServices.Common._staticInstance.set_defaultFailedCallback(value); }
Core.WebServices.Common.get_defaultFailedCallback = function() { return Core.WebServices.Common._staticInstance.get_defaultFailedCallback(); }
Core.WebServices.Common.set_path("/Core,Core.WebServices.Common.asmx");
Core.WebServices.Common.GetVisitors= function(pageId,onSuccess,onFailed,userContext) {Core.WebServices.Common._staticInstance.GetVisitors(pageId,onSuccess,onFailed,userContext); }
Core.WebServices.Common.CallPlugin= function(Ass,Plugin,args,onSuccess,onFailed,userContext) {Core.WebServices.Common._staticInstance.CallPlugin(Ass,Plugin,args,onSuccess,onFailed,userContext); }
