ninjadeathmonkey
Programmer
I have a problem connecting to Digg's RSS feed from my application. I can connect just fine using IE or Firefox, but I get "Unable to connect to the remote server" error when running my app. Here's the code I'm using:
I even try:
I get the same problem. It either times out, or can't connect.
Any suggestions?
Code:
[COLOR=#0000CC]string[/color] rssLink = [COLOR=#CC0000]"[URL unfurl="true"]http://www.digg.com/rss/index.xml"[/URL][/color];
[COLOR=#0000CC]DataSet[/color] rssData = [COLOR=#0000CC]new DataSet[/color]();
rssData.ReadXml(rssLink);
I even try:
Code:
[COLOR=#0000CC]string[/color] rssLink = [COLOR=#CC0000]"[URL unfurl="true"]http://www.digg.com/rss/index.xml"[/URL][/color];
[COLOR=#0000CC]HttpWebRequest[/color] req = ([COLOR=#0000CC]HttpWebRequest[/color])[COLOR=#0000CC]WebRequest[/color].Create(rssLink);
[COLOR=#0000CC]DataSet[/color] rssData = [COLOR=#0000CC]new DataSet[/color]();
rssData.ReadXml(req.GetResponse().GetResponseStream());
I get the same problem. It either times out, or can't connect.
Any suggestions?