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

