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

