vote up 0 vote down star

Hi,

When I try to set the header properties on a WebRequest object, I get the following exception

This header must be modified using the appropriate property

I've tried modifying the .Headers propery and adding them that way like so

webRequest.Headers.Add(HttpRequestHeader.Referer, "http://stackoverflow.com");

But still getting exceptions. I can get around this by casting the WebRequest object to a HttpWebRequest and setting the properties such as httpWebReq.Referer ="http://stackoverflow.com"

But I'd like to know if there's a way to get a finer grained control over modifying headers with a request for a remote resource.

Thanks

flag

39% accept rate

4 Answers

vote up 1 vote down

WebRequest being abstract (and since any inheriting class must override the Headers property).. which concrete WebRequest are you using ? In other words, how do you get that WebRequest object to beign with ?

ehr.. mnour answer made me realize that the error message you were getting is actually spot on: it's telling you that the header you are trying to add already exist and you should then modify its value using the appropriate property (the indexer, for instance), instead of trying to add it again. That's probably all you were looking for.

Other classes inheriting from WebRequest might have even better properties wrapping certain headers; See this post for instance.

link|flag
Actually WebRequest.Create(url) creates an instance of a WebRequest object. – hmemcpy Oct 27 '08 at 12:41
vote up 0 vote down

Im creating a WebRequest object by WebRequest.Create()

I have already tried modifying the existing header using webReq.Headers[HttpWebRequest.Referer] = "a value"

I get a different error System.ArgumentException: This header must be modified using the appropriate property

Although its not a show stopper, more granular control over setting header properties would be nice. Anyone?

I also read that post. Sort of said what I already know.

link|flag
vote up 0 vote down

Basically, no. That is an http header, so it is reasonable to cast to HttpWebRequest and set the .Referer (as you indicate in the question):

HttpWebRequest req = ...
req.Referer = "your url";
link|flag
vote up 0 vote down

Anytime you're changing the headers of an HttpWebRequest, you need to use the appropriate properties on the object itself, if they exist. If you have a plain WebRequest, be sure to cast it to an HttpWebRequest first. Then "Referrer" in your case can be accessed via "((HttpWebRequest)request).Referrer", so you don't need to modify the header directly - just set the property to the right value. ContentLength, ContentType, UserAgent, etc, all need to be set this way.

IMHO, this is a shortcoming on MS part...setting the headers via Headers.Add() should automatically call the appropriate property behind the scenes, if that's what they want to do.

link|flag

Your Answer

Get an OpenID
or

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