I am wondering if someone can help me. I have written a webpart that works on my machine but when i install it on production it blows up with the following error:
System.Net.WebException: The remote server returned an error: (403) Forbidden. at System.Net.HttpWebRequest.GetResponse() at
HttpWebRequest xmlrequest = (HttpWebRequest)WebRequest.Create("http://xml.weather.yahoo.com/forecastrss?p=10038");
HttpWebResponse xmlresponse = (HttpWebResponse)xmlrequest.GetResponse();
The webpart is weather webpart that gets weather information for a given zip code.
I am not sure why this is happening when it works on my dev sharepoint machine.
Can anyone help?
Thanks
Al