Quantcast
Channel: Getting Started
Browsing all 15 articles
Browse latest View live

Re: Rss - Cannot connect to remote server

i'm trying to consume rss feeds using the following code <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>   <!DOCTYPE html PUBLIC "-//W3C//DTD...

View Article



Re: Rss - Cannot connect to remote server

Hi mokeefe, I tried your code and didn't solve the problem. This is the error message: System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException....

View Article

Re: Rss - Cannot connect to remote server

This is how to add a proxy. I have tested your code and output to page (inlcuded in sample) and therefore it is an infrastructure issue. Some info on provision of Proxy settings provided. Rgds,...

View Article

Re: Rss - Cannot connect to remote server

confused,can u explain in detail.

View Article

Re: Rss - Cannot connect to remote server

This code gets the value of the response stream of the url you want. This is the html, xml or whatever stream that an IIS can return.  The stream variable contains the xml stream of the rss.

View Article


Re: Rss - Cannot connect to remote server

can you explain me what this code is doing. String url = "http://weblogs.asp.net/scottgu/rss.aspx";         System.Net.WebRequest request = System.Net.WebRequest.Create(url);...

View Article

Re: Rss - Cannot connect to remote server

I think that the firewall of my company is blocking me. I have configured this url on Google Reader and there is no problem, the rss is public so It's not necessary any login to access. I'll have to...

View Article

Re: Rss - Cannot connect to remote server

  The error you are experiencing is: "System.Net.WebException: Cannot connect to remote server. " There are many possible causes... The url to the remote server is wrong. You do not have login rights...

View Article


Re: Rss - Cannot connect to remote server

I experimented an error on my company, could it be possible that the error comes from a proxy???

View Article


Re: Rss - Cannot connect to remote server

 Your code worked: String url = "http://weblogs.asp.net/scottgu/rss.aspx"; System.Net.WebRequest request = System.Net.WebRequest.Create(url); request.Credentials =...

View Article

Re: Rss - Cannot connect to remote server

For example, http://weblogs.asp.net/scottgu/rss.aspx (Scott Guthrie blog) or an internal rss of sharepoint list

View Article

Re: Rss - Cannot connect to remote server

And what is the string set to?

View Article

Re: Rss - Cannot connect to remote server

The url variable is a string that contains the url of the rss feed that I want to read.

View Article


Re: Rss - Cannot connect to remote server

What is the value of url?

View Article

Rss - Cannot connect to remote server

Hi all, I have an rss reader. I read all rss feeds of the intranet of my company, but cannot access to external rss feeds. This is my code: WebRequest request = WebRequest.Create( url );...

View Article

Browsing all 15 articles
Browse latest View live




Latest Images