var LogError=function() {
LogError.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
LogError.prototype={
LogException:function(exception,url,succeededCallback, failedCallback, userContext) {
return this._invoke(LogError.get_path(), 'LogException',false,{exception:exception,url:url},succeededCallback,failedCallback,userContext); }}
LogError.registerClass('LogError',Sys.Net.WebServiceProxy);
LogError._staticInstance = new LogError();
LogError.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; LogError._staticInstance._path = value; }
LogError.get_path = function() { return LogError._staticInstance._path; }
LogError.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
LogError._staticInstance._timeout = value; }
LogError.get_timeout = function() { 
return LogError._staticInstance._timeout; }
LogError.set_defaultUserContext = function(value) { 
LogError._staticInstance._userContext = value; }
LogError.get_defaultUserContext = function() { 
return LogError._staticInstance._userContext; }
LogError.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; LogError._staticInstance._succeeded = value; }
LogError.get_defaultSucceededCallback = function() { 
return LogError._staticInstance._succeeded; }
LogError.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; LogError._staticInstance._failed = value; }
LogError.get_defaultFailedCallback = function() { 
return LogError._staticInstance._failed; }
LogError.set_path("/green/LogError.asmx");
LogError.LogException= function(exception,url,onSuccess,onFailed,userContext) {LogError._staticInstance.LogException(exception,url,onSuccess,onFailed,userContext); }
