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