var ErrorProcessingService=function() {
ErrorProcessingService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ErrorProcessingService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ErrorProcessingService._staticInstance.get_path();},
Acknowledge:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Acknowledge',false,{},succeededCallback,failedCallback,userContext); },
GetDateTimeUTC:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetDateTimeUTC',false,{},succeededCallback,failedCallback,userContext); },
ProcessErrorMessage:function(errorMessage,succeededCallback, failedCallback, userContext) {
/// <param name="errorMessage" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._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.set_path(value); }
ErrorProcessingService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ErrorProcessingService._staticInstance.get_path();}
ErrorProcessingService.set_timeout = function(value) {
ErrorProcessingService._staticInstance.set_timeout(value); }
ErrorProcessingService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ErrorProcessingService._staticInstance.get_timeout(); }
ErrorProcessingService.set_defaultUserContext = function(value) { 
ErrorProcessingService._staticInstance.set_defaultUserContext(value); }
ErrorProcessingService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ErrorProcessingService._staticInstance.get_defaultUserContext(); }
ErrorProcessingService.set_defaultSucceededCallback = function(value) { 
 ErrorProcessingService._staticInstance.set_defaultSucceededCallback(value); }
ErrorProcessingService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ErrorProcessingService._staticInstance.get_defaultSucceededCallback(); }
ErrorProcessingService.set_defaultFailedCallback = function(value) { 
ErrorProcessingService._staticInstance.set_defaultFailedCallback(value); }
ErrorProcessingService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ErrorProcessingService._staticInstance.get_defaultFailedCallback(); }
ErrorProcessingService.set_path("/Web/Services/ErrorProcessingService.asmx");
ErrorProcessingService.Acknowledge= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ErrorProcessingService._staticInstance.Acknowledge(onSuccess,onFailed,userContext); }
ErrorProcessingService.GetDateTimeUTC= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ErrorProcessingService._staticInstance.GetDateTimeUTC(onSuccess,onFailed,userContext); }
ErrorProcessingService.ProcessErrorMessage= function(errorMessage,onSuccess,onFailed,userContext) {
/// <param name="errorMessage" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ErrorProcessingService._staticInstance.ProcessErrorMessage(errorMessage,onSuccess,onFailed,userContext); }

