vote up 0 vote down star

I'm calling a web service from a console app - all in C# on .NET.

I want to add an HTTP header (not a SOAP header) to the web service call. How do I do this?

This is what my code looks like so far:

EatService es = new EatService(); // web service added in Web References
// Add HTTP header X-Info = "extra info" here
string info = es.GetMoreInfo(); // ws call
flag

73% accept rate
2  
What version of .NET? ASMX web service, or WCF? – John Saunders Aug 22 at 0:07
Using .NET 3.5 with an ASMX web service. – Guy Aug 24 at 4:02

1 Answer

vote up 1 vote down check

If you are using an ASMX web service proxy (Web Reference), then this is a duplicate of Adding Custom Http Headers to C# Web Service Proxy.

link|flag

Your Answer

Get an OpenID
or

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