var HitStatService=function() {
HitStatService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HitStatService.prototype={
AddOneHit:function(succeededCallback, failedCallback, userContext) {
return this._invoke(HitStatService.get_path(), 'AddOneHit',false,{},succeededCallback,failedCallback,userContext); }}
HitStatService.registerClass('HitStatService',Sys.Net.WebServiceProxy);
HitStatService._staticInstance = new HitStatService();
HitStatService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; HitStatService._staticInstance._path = value; }
HitStatService.get_path = function() { return HitStatService._staticInstance._path; }
HitStatService.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); }
HitStatService._staticInstance._timeout = value; }
HitStatService.get_timeout = function() { 
return HitStatService._staticInstance._timeout; }
HitStatService.set_defaultUserContext = function(value) { 
HitStatService._staticInstance._userContext = value; }
HitStatService.get_defaultUserContext = function() { 
return HitStatService._staticInstance._userContext; }
HitStatService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; HitStatService._staticInstance._succeeded = value; }
HitStatService.get_defaultSucceededCallback = function() { 
return HitStatService._staticInstance._succeeded; }
HitStatService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; HitStatService._staticInstance._failed = value; }
HitStatService.get_defaultFailedCallback = function() { 
return HitStatService._staticInstance._failed; }
HitStatService.set_path("/Services/HitStatService.asmx");
HitStatService.AddOneHit= function(onSuccess,onFailed,userContext) {HitStatService._staticInstance.AddOneHit(onSuccess,onFailed,userContext); }
