var ProductService=function() {
ProductService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ProductService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ProductService._staticInstance.get_path();},
GetInfoBoxData:function(productId,trackingCategory,trackingDetails,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetInfoBoxData',false,{productId:productId,trackingCategory:trackingCategory,trackingDetails:trackingDetails},succeededCallback,failedCallback,userContext); }}
ProductService.registerClass('ProductService',Sys.Net.WebServiceProxy);
ProductService._staticInstance = new ProductService();
ProductService.set_path = function(value) { ProductService._staticInstance.set_path(value); }
ProductService.get_path = function() { return ProductService._staticInstance.get_path(); }
ProductService.set_timeout = function(value) { ProductService._staticInstance.set_timeout(value); }
ProductService.get_timeout = function() { return ProductService._staticInstance.get_timeout(); }
ProductService.set_defaultUserContext = function(value) { ProductService._staticInstance.set_defaultUserContext(value); }
ProductService.get_defaultUserContext = function() { return ProductService._staticInstance.get_defaultUserContext(); }
ProductService.set_defaultSucceededCallback = function(value) { ProductService._staticInstance.set_defaultSucceededCallback(value); }
ProductService.get_defaultSucceededCallback = function() { return ProductService._staticInstance.get_defaultSucceededCallback(); }
ProductService.set_defaultFailedCallback = function(value) { ProductService._staticInstance.set_defaultFailedCallback(value); }
ProductService.get_defaultFailedCallback = function() { return ProductService._staticInstance.get_defaultFailedCallback(); }
ProductService.set_path("/Services/ProductService.asmx");
ProductService.GetInfoBoxData= function(productId,trackingCategory,trackingDetails,onSuccess,onFailed,userContext) {ProductService._staticInstance.GetInfoBoxData(productId,trackingCategory,trackingDetails,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(PayloadObject) === 'undefined') {
var PayloadObject=gtc("PayloadObject");
PayloadObject.registerClass('PayloadObject');
}
