I am using Kentico V5.5 R2.
I have one Kentico Site and another .net 4.0 Site.
I have a news Rss feed setup on the Kentico Site which I am trying to read from the other site using Web Request.
The code:
WebRequest RSSRequest = WebRequest.Create("http://{SITE}/news.aspx?rss=news");
This returns 404 exception with web request. However if I go to that url in the browser it renders correctly.
Is there a better way to do this or how can I make it work?