var AutoNews=function() {
AutoNews.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
AutoNews.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return AutoNews._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); }}
AutoNews.registerClass('AutoNews',Sys.Net.WebServiceProxy);
AutoNews._staticInstance = new AutoNews();
AutoNews.set_path = function(value) { AutoNews._staticInstance.set_path(value); }
AutoNews.get_path = function() { return AutoNews._staticInstance.get_path(); }
AutoNews.set_timeout = function(value) { AutoNews._staticInstance.set_timeout(value); }
AutoNews.get_timeout = function() { return AutoNews._staticInstance.get_timeout(); }
AutoNews.set_defaultUserContext = function(value) { AutoNews._staticInstance.set_defaultUserContext(value); }
AutoNews.get_defaultUserContext = function() { return AutoNews._staticInstance.get_defaultUserContext(); }
AutoNews.set_defaultSucceededCallback = function(value) { AutoNews._staticInstance.set_defaultSucceededCallback(value); }
AutoNews.get_defaultSucceededCallback = function() { return AutoNews._staticInstance.get_defaultSucceededCallback(); }
AutoNews.set_defaultFailedCallback = function(value) { AutoNews._staticInstance.set_defaultFailedCallback(value); }
AutoNews.get_defaultFailedCallback = function() { return AutoNews._staticInstance.get_defaultFailedCallback(); }
AutoNews.set_path("/AutoNews.asmx");
AutoNews.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {AutoNews._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
