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