Type.registerNamespace('LipperWeb');
LipperWeb.RssProxyService=function() {
LipperWeb.RssProxyService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
LipperWeb.RssProxyService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return LipperWeb.RssProxyService._staticInstance.get_path();},
GetRss:function(url,count,cacheDuration,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetRss',true,{url:url,count:count,cacheDuration:cacheDuration},succeededCallback,failedCallback,userContext); }}
LipperWeb.RssProxyService.registerClass('LipperWeb.RssProxyService',Sys.Net.WebServiceProxy);
LipperWeb.RssProxyService._staticInstance = new LipperWeb.RssProxyService();
LipperWeb.RssProxyService.set_path = function(value) { LipperWeb.RssProxyService._staticInstance.set_path(value); }
LipperWeb.RssProxyService.get_path = function() { return LipperWeb.RssProxyService._staticInstance.get_path(); }
LipperWeb.RssProxyService.set_timeout = function(value) { LipperWeb.RssProxyService._staticInstance.set_timeout(value); }
LipperWeb.RssProxyService.get_timeout = function() { return LipperWeb.RssProxyService._staticInstance.get_timeout(); }
LipperWeb.RssProxyService.set_defaultUserContext = function(value) { LipperWeb.RssProxyService._staticInstance.set_defaultUserContext(value); }
LipperWeb.RssProxyService.get_defaultUserContext = function() { return LipperWeb.RssProxyService._staticInstance.get_defaultUserContext(); }
LipperWeb.RssProxyService.set_defaultSucceededCallback = function(value) { LipperWeb.RssProxyService._staticInstance.set_defaultSucceededCallback(value); }
LipperWeb.RssProxyService.get_defaultSucceededCallback = function() { return LipperWeb.RssProxyService._staticInstance.get_defaultSucceededCallback(); }
LipperWeb.RssProxyService.set_defaultFailedCallback = function(value) { LipperWeb.RssProxyService._staticInstance.set_defaultFailedCallback(value); }
LipperWeb.RssProxyService.get_defaultFailedCallback = function() { return LipperWeb.RssProxyService._staticInstance.get_defaultFailedCallback(); }
LipperWeb.RssProxyService.set_enableJsonp = function(value) { LipperWeb.RssProxyService._staticInstance.set_enableJsonp(value); }
LipperWeb.RssProxyService.get_enableJsonp = function() { return LipperWeb.RssProxyService._staticInstance.get_enableJsonp(); }
LipperWeb.RssProxyService.set_jsonpCallbackParameter = function(value) { LipperWeb.RssProxyService._staticInstance.set_jsonpCallbackParameter(value); }
LipperWeb.RssProxyService.get_jsonpCallbackParameter = function() { return LipperWeb.RssProxyService._staticInstance.get_jsonpCallbackParameter(); }
LipperWeb.RssProxyService.set_path("/RssProxyService.asmx");
LipperWeb.RssProxyService.GetRss= function(url,count,cacheDuration,onSuccess,onFailed,userContext) {LipperWeb.RssProxyService._staticInstance.GetRss(url,count,cacheDuration,onSuccess,onFailed,userContext); }

