var ErrorProcessingService=function() {
ErrorProcessingService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ErrorProcessingService.prototype={
Acknowledge:function(succeededCallback, failedCallback, userContext) {
return this._invoke(ErrorProcessingService.get_path(), 'Acknowledge',false,{},succeededCallback,failedCallback,userContext); },
GetDateTimeUTC:function(succeededCallback, failedCallback, userContext) {
return this._invoke(ErrorProcessingService.get_path(), 'GetDateTimeUTC',false,{},succeededCallback,failedCallback,userContext); },
ProcessErrorMessage:function(errorMessage,succeededCallback, failedCallback, userContext) {
return this._invoke(ErrorProcessingService.get_path(), 'ProcessErrorMessage',false,{errorMessage:errorMessage},succeededCallback,failedCallback,userContext); }}
ErrorProcessingService.registerClass('ErrorProcessingService',Sys.Net.WebServiceProxy);
ErrorProcessingService._staticInstance = new ErrorProcessingService();
ErrorProcessingService.set_path = function(value) { ErrorProcessingService._staticInstance._path = value; }
ErrorProcessingService.get_path = function() { return ErrorProcessingService._staticInstance._path; }
ErrorProcessingService.set_timeout = function(value) { ErrorProcessingService._staticInstance._timeout = value; }
ErrorProcessingService.get_timeout = function() { return ErrorProcessingService._staticInstance._timeout; }
ErrorProcessingService.set_defaultUserContext = function(value) { ErrorProcessingService._staticInstance._userContext = value; }
ErrorProcessingService.get_defaultUserContext = function() { return ErrorProcessingService._staticInstance._userContext; }
ErrorProcessingService.set_defaultSucceededCallback = function(value) { ErrorProcessingService._staticInstance._succeeded = value; }
ErrorProcessingService.get_defaultSucceededCallback = function() { return ErrorProcessingService._staticInstance._succeeded; }
ErrorProcessingService.set_defaultFailedCallback = function(value) { ErrorProcessingService._staticInstance._failed = value; }
ErrorProcessingService.get_defaultFailedCallback = function() { return ErrorProcessingService._staticInstance._failed; }
ErrorProcessingService.set_path("/Web/Services/ErrorProcessingService.asmx");
ErrorProcessingService.Acknowledge= function(onSuccess,onFailed,userContext) {ErrorProcessingService._staticInstance.Acknowledge(onSuccess,onFailed,userContext); }
ErrorProcessingService.GetDateTimeUTC= function(onSuccess,onFailed,userContext) {ErrorProcessingService._staticInstance.GetDateTimeUTC(onSuccess,onFailed,userContext); }
ErrorProcessingService.ProcessErrorMessage= function(errorMessage,onSuccess,onFailed,userContext) {ErrorProcessingService._staticInstance.ProcessErrorMessage(errorMessage,onSuccess,onFailed,userContext); }

