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

