I have a WCF 4 web service that checks for a soap header. This works fine with a WCF client but I have a customer that needs to use the old web reference from their app. How do you consume a WCF service using Add Web Reference and the add a SOAP header in the client? Lets keep it simple and say I want to pass a country in a header, so the header name will be country.

Thanks, Paul

link|improve this question

50% accept rate
feedback

1 Answer

You need to expose your endpoint across the basicHttpBinding in order to interoperate with pre .net 3.0 clients.

UPDATE

Does this help? http://msmvps.com/blogs/paulomorgado/archive/2007/04/27/wcf-building-an-http-user-agent-message-inspector.aspx

link|improve this answer
Yes, its basic http. I just can't see how to add a header. – Paul Speranza Dec 20 '11 at 21:10
Have updated my answer – hugh Dec 21 '11 at 8:10
Hugh, this works when everything is WCF. I am trying to add a header to a proxy that has veen created using "Add Web reference" where the .Net client cannot use WCF. What happened is one of our customers has a 3rd party app that can only consume asmx services, or that is what they tell me. – Paul Speranza Dec 21 '11 at 14:36
feedback

Your Answer

 
or
required, but never shown

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