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

