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.
