I have generated a proxy class from a wsdl file (C# VS 2008) The webservice expects an element within the soap header. When I try to add this element using proxy.RequestSoapContext.Envelope.Header I receive a null error. The envelope is null. How do I am a custom element to the header ?

Many thanks.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Try this

EndpointAddressBuilder endpointAddressBuilder = 
          new EndpointAddressBuilder(proxy.Endpoint.Address);
foreach (var item in headers) //headers is a Dictionary<string, string>
     endpointAddressBuilder.Headers.Add(
          AddressHeader.CreateAddressHeader(item.Key, "nameSpace", item.Value));
proxy.Endpoint.Address = endpointAddressBuilder.ToEndpointAddress();

Hope this works for you.

link|improve this answer
Thankyou Amar. That worked! It took me a while as my generated proxy was from wsdl.exe rather than svcutil.exe. – user1180360 Feb 2 at 10:53
On the off chance I am now getting the error No SOAPAction Header defined. Any thoughts ? I'm new to web services and find it a mine field of objects etc. – user1180360 Feb 2 at 10:54
Answered this myself. Switched from WcfBinding to Basic. – user1180360 Feb 2 at 11:07
Thankyou very much Amar. – user1180360 Feb 2 at 11:07
Great to hear that. You can check this post also, might help you. – Amar Palsapure Feb 2 at 11:18
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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