vote up 0 vote down star

To conect to a third party service I need to make a Https Post. One of the requisites set is to sent a custom content type.

I'm using WebClient, but I can't find how to set it. I've tried making a new class and overriding the CreateRequest Method, but that make request crash.

Is there any way to do that without having to rewrite CopyHeadersTo method?

Thanks in advance

EDIT CopyHeaderTo is a method I've seen using .NET Reflector. It's invoqued from GetWebRequest and sets all Request Headers, including Content-Type, from private properties.

flag

2 Answers

vote up 1 vote down

You could try adding to the Headers collection.

myWebClient.Headers.Add("Content-Type","application/xxx");
link|flag
That throws a WebException, saying that Content-Type cannot be changed for current petition. – MaLKaV_eS Oct 21 at 7:02
Who throws this exception? Is it the server script you are posting to? I have tested the example provided in MSDN and it successfully set the Content-Type header to a custom value. – Darin Dimitrov Oct 21 at 9:04
vote up 0 vote down check

Well, I just missed Request.ContentType propertie. If GetWebRequest method is overried, setting ContentType to whatever value desired does it.

Still, connection to third party is not working. Go figures.

Thanks!

link|flag

Your Answer

Get an OpenID
or

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