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