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