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

