Debugging Error

Hello to all,

I am a newbie to VB programming and currently I am viewing the vb '05 express tutorials. I am getting an error that I cannot find any information on. Right now in the tutorials, we are creating an RSS reader application. When I click to refresh the RSS feeds I get the following error:

System.Net.WebException: The remote server returned an error: (404) Not found at System.Net.HttpWebRequest.GetResponse() at RSSReader.RSSManager.ProcessNewsFeed(String rssUrl)

Can anyone provide help with this?

Please feel free to email me at:

greg.petrosh@gmail.com

Thanks

Greg

[593 byte] By [gpetrosh] at [2007-12-28]
# 1

ProcessNewsFeed(String rssUrl)

The Url page specified can not be located on the server (standard 404 error)...make sure you have the correct address specified

DMan1 at 2007-9-4 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 2
Are you suggesting that it is in the code or that I have the wrong URL coded?
gpetrosh at 2007-9-4 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 3

Either you have coded the URL string wrong or the server no longer has the page you are requesting or it is configured not to give you the page!

http://en.wikipedia.org/wiki/404_error

The 404 or Not Found error message is an HTTP standard response code indicating that the client was able to communicate with the server, but the server either could not find what was requested, or it was configured not to fulfill the request and not reveal the reason why. 404 errors should not be confused with "server not found" or similar errors, in which a connection to the destination server cannot be made at all.

DMan1 at 2007-9-4 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 4
Thanks DMan. I did find that the web address was incorrect for the RSS feed I was looking for.
gpetrosh at 2007-9-4 > top of Msdn Tech,Visual Basic,Visual Basic IDE...