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();},
GetFeedModule:function(Url,Count,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetFeedModule',false,{Url:Url,Count:Count},succeededCallback,failedCallback,userContext); },
GetFeedWidget:function(Url,Count,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetFeedWidget',false,{Url:Url,Count:Count},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("/Services/RSSLoader.asmx");
RSSLoader.GetFeedModule= function(Url,Count,onSuccess,onFailed,userContext) {RSSLoader._staticInstance.GetFeedModule(Url,Count,onSuccess,onFailed,userContext); }
RSSLoader.GetFeedWidget= function(Url,Count,onSuccess,onFailed,userContext) {RSSLoader._staticInstance.GetFeedWidget(Url,Count,onSuccess,onFailed,userContext); }
