var StageProgressWebService=function() {
StageProgressWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
StageProgressWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return StageProgressWebService._staticInstance.get_path();},
ClientStageUpdate:function(stageName,succeededCallback, failedCallback, userContext) {
/// <param name="stageName" 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(), 'ClientStageUpdate',false,{stageName:stageName},succeededCallback,failedCallback,userContext); },
StageUpdate:function(sessionId,stageName,succeededCallback, failedCallback, userContext) {
/// <param name="sessionId" type="String">System.Guid</param>
/// <param name="stageName" 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(), 'StageUpdate',false,{sessionId:sessionId,stageName:stageName},succeededCallback,failedCallback,userContext); },
MasterPageStageUpdate:function(stageName,pageName,succeededCallback, failedCallback, userContext) {
/// <param name="stageName" type="String">System.String</param>
/// <param name="pageName" 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(), 'MasterPageStageUpdate',false,{stageName:stageName,pageName:pageName},succeededCallback,failedCallback,userContext); }}
StageProgressWebService.registerClass('StageProgressWebService',Sys.Net.WebServiceProxy);
StageProgressWebService._staticInstance = new StageProgressWebService();
StageProgressWebService.set_path = function(value) {
StageProgressWebService._staticInstance.set_path(value); }
StageProgressWebService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return StageProgressWebService._staticInstance.get_path();}
StageProgressWebService.set_timeout = function(value) {
StageProgressWebService._staticInstance.set_timeout(value); }
StageProgressWebService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return StageProgressWebService._staticInstance.get_timeout(); }
StageProgressWebService.set_defaultUserContext = function(value) { 
StageProgressWebService._staticInstance.set_defaultUserContext(value); }
StageProgressWebService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return StageProgressWebService._staticInstance.get_defaultUserContext(); }
StageProgressWebService.set_defaultSucceededCallback = function(value) { 
 StageProgressWebService._staticInstance.set_defaultSucceededCallback(value); }
StageProgressWebService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return StageProgressWebService._staticInstance.get_defaultSucceededCallback(); }
StageProgressWebService.set_defaultFailedCallback = function(value) { 
StageProgressWebService._staticInstance.set_defaultFailedCallback(value); }
StageProgressWebService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return StageProgressWebService._staticInstance.get_defaultFailedCallback(); }
StageProgressWebService.set_path("/StageProgressWebService.asmx");
StageProgressWebService.ClientStageUpdate= function(stageName,onSuccess,onFailed,userContext) {
/// <param name="stageName" 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>
StageProgressWebService._staticInstance.ClientStageUpdate(stageName,onSuccess,onFailed,userContext); }
StageProgressWebService.StageUpdate= function(sessionId,stageName,onSuccess,onFailed,userContext) {
/// <param name="sessionId" type="String">System.Guid</param>
/// <param name="stageName" 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>
StageProgressWebService._staticInstance.StageUpdate(sessionId,stageName,onSuccess,onFailed,userContext); }
StageProgressWebService.MasterPageStageUpdate= function(stageName,pageName,onSuccess,onFailed,userContext) {
/// <param name="stageName" type="String">System.String</param>
/// <param name="pageName" 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>
StageProgressWebService._staticInstance.MasterPageStageUpdate(stageName,pageName,onSuccess,onFailed,userContext); }
