Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm highly baffled by Soap Headers. Not on how to use them, but why use them?

So I've analyzed quite a few, and it appears that they expose metadata directly in the header. Which my brain can see vast array of security issues with that. But I think the part that is the most confusing, is when the author often states:

     The header won't transmit, until the authentication is successful.

Wait a second, when I invoke a [webmethod] if it fails it won't generate the Soap Header I implemented in code?

My brain just goes, how? why?

I can only correlate that it is due to the line of code hasn't been reached, so it doesn't actually populate the header data. But... Since we are defining the header though it failed, wouldn't it still be possible to expose that metadata?

So to reiterate the question, possibly with a more concise approach. Why would I use a Soap Header, how would I leverage one without exposing possibly sensitive data. Essentially is my interpretation of how they work wrong?

Sorry if my question seems quite jumbled, but the topic has thrown me in so many directions I'm slightly confused on the understanding.


Update:

The Client Consuming is where I'm slightly confused. That is where I feel the data would be exposed. An example:

<script runat="server">
   protected void Page_Load(object sender, System.EventArgs.e)
   {
       localhost.HelloSoapHeader ws = new localhost.HelloSoapHeader();
       localhost.HelloHeader wsHeader = new localhost.HelloHeader();

       wsHeader.Username = textbox1.text;
       wsHeader.Password = textbox2.text;
       ws.HelloHeaderValue = wsHeader;

       ws.SoapVersion = System.Web.Services.Protocols.SoapProtocolVersion.Soap12;

   }
</script>

Wouldn't that theoretically be exposing the data weather it fails, or authenticates? Maybe I just don't understand correctly and need clarification.

Sorry if this is a dumb question, but I can't find any documentation or information to truly solidify the explanation which leaves an assortment of questions and variables instead.

share|improve this question
You mean the soap action header, that the client sends, which specifies what method the server should execute? – CodeCaster Mar 15 at 17:54
Yes, the Clients implementation. – Greg Mar 15 at 17:55
So the client already knows about the service and has the intent to execute a certain soap action. How does this header expose sensitive data? – CodeCaster Mar 15 at 17:59
1  
Also, aren't you asking about ASMX web services? ASMX is a legacy technology, and should not be used for new development. WCF should be used for all new development of web service clients and servers. One hint: Microsoft has retired the ASMX Forum on MSDN. – John Saunders Mar 15 at 18:27
1  
I agree with John. ASMX is by no means "basics". It was more of a diversion down a dead end road. If you want to get back to basics do regular POSTs to a generic handler (.ashx). Everything is built up from that; including RESTful services which is really where you should be. BTW, read this, especially the comments. reinout.vanrees.org/weblog/2010/11/11/… – Chris Lively Mar 15 at 19:39
show 7 more comments

closed as not constructive by John Saunders, bmargulies, Muhammad Reda, Greg, spajce Mar 15 at 22:04

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

Browse other questions tagged or ask your own question.