Я создаю веб-форму, которая будет переходить на сайт, собирать RSS-каналы в формате XML и считывать их в XmlTextReader для форматирования и отображения на моем сайте.
У меня есть эта строка, которая занимаетзабота о переходе на другой сайт
XmlTextReader reader = new XmlTextReader(@"http://www.wired.com/threatlevel/feed/");
Когда я запускаю это из своего локального хоста, он работает нормально.Но как только он публикуется на сервере 1 и 1, происходит сбой со следующей ошибкой.
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 72.246.94.16:80
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 72.246.94.16:80
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Есть идеи, что это может быть?
Большое спасибо!