Type.registerNamespace('EO.UI');
EO.UI.ExceptionServices=function() {
EO.UI.ExceptionServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
EO.UI.ExceptionServices.prototype={
LogException:function(message,succeededCallback, failedCallback, userContext) {
return this._invoke(EO.UI.ExceptionServices.get_path(), 'LogException',false,{message:message},succeededCallback,failedCallback,userContext); }}
EO.UI.ExceptionServices.registerClass('EO.UI.ExceptionServices',Sys.Net.WebServiceProxy);
EO.UI.ExceptionServices._staticInstance = new EO.UI.ExceptionServices();
EO.UI.ExceptionServices.set_path = function(value) { EO.UI.ExceptionServices._staticInstance._path = value; }
EO.UI.ExceptionServices.get_path = function() { return EO.UI.ExceptionServices._staticInstance._path; }
EO.UI.ExceptionServices.set_timeout = function(value) { EO.UI.ExceptionServices._staticInstance._timeout = value; }
EO.UI.ExceptionServices.get_timeout = function() { return EO.UI.ExceptionServices._staticInstance._timeout; }
EO.UI.ExceptionServices.set_defaultUserContext = function(value) { EO.UI.ExceptionServices._staticInstance._userContext = value; }
EO.UI.ExceptionServices.get_defaultUserContext = function() { return EO.UI.ExceptionServices._staticInstance._userContext; }
EO.UI.ExceptionServices.set_defaultSucceededCallback = function(value) { EO.UI.ExceptionServices._staticInstance._succeeded = value; }
EO.UI.ExceptionServices.get_defaultSucceededCallback = function() { return EO.UI.ExceptionServices._staticInstance._succeeded; }
EO.UI.ExceptionServices.set_defaultFailedCallback = function(value) { EO.UI.ExceptionServices._staticInstance._failed = value; }
EO.UI.ExceptionServices.get_defaultFailedCallback = function() { return EO.UI.ExceptionServices._staticInstance._failed; }
EO.UI.ExceptionServices.set_path("/script-services/ExceptionServices.asmx");
EO.UI.ExceptionServices.LogException= function(message,onSuccess,onFailed,userContext) {EO.UI.ExceptionServices._staticInstance.LogException(message,onSuccess,onFailed,userContext); }
