I am in .NET environment and calling a Java SOAP Webservice. I added the Service as a Web Reference and it loaded Proxy and config settings for me. So far so good.
Now, to me it is just like calling another library because all the types are loaded and I can call methods and assign the return types to the Proxy classes that .Net generated for me.
However, my provider says that they are sending some cookies in the SOAP Header. Now, how do I access SOAP header from my C# code?Because when I call the service and retrieve the response, it is like calling a method and retrieving a Typed response. Not sure how to extract SOAP header information from it.
Any ideas?