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