I'm using HttpWebRequest to make a request to a url:

HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(urlAddress);
HttpWebResponse resp = (HttpWebResponse)req.GetResponse();

but it throws error 500 (Internal Server Error) but when i visit the URLAddress with browser it works fine, urlAddress= www.khademnews.com

it is a simple GET operation but it throws an exception for me how can I solve this?

link|improve this question

54% accept rate
1  
The server apparently expects some HTTP headers in the request that a web browser typically sends but the HttpWebRequest does not. You need to figure out which headers these are (for example, using Fiddler) and add them to the HttpWebRequest. – dtb Jun 29 '11 at 6:40
feedback

closed as too localized by leppie, abatishchev, mathieu, dtb, Graviton Jun 29 '11 at 9:41

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

up vote 6 down vote accepted

You might need to set up the user agent as some sites might require it. Also you could use a WebClient to simplify your code:

using (var client = new WebClient())
{
    client.Headers[HttpRequestHeader.UserAgent] = "Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20100101 Firefox/5.0";
    string result = client.DownloadString("http://www.khademnews.com");
}

The server might expect other headers as well. You could check with FireBug which headers are sent went you perform the request in your browser and add those headers.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.