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