D
DonTomasso
I'm trying to modify my soap headers before making a call to a web service.
I am using an IClientMessageInspector class and adding a single header works
fine, but I want to add a more complex object into the header.
The resulting SOAP xml is supposed to look something like this:
<soapenv:Header>
<myroot>
<vala>somevalue</vala>
<valb>someothervalue</valb>
<valc>a third value</valc>
</myroot>
</soapenv:Header>
I have no clue how to do this.... MessageHeader has no "addNode" or nothing...
I'm also currious on how to extract the same type of information in the
resulting message.
Anyone?
Thanx
Thomas
I am using an IClientMessageInspector class and adding a single header works
fine, but I want to add a more complex object into the header.
The resulting SOAP xml is supposed to look something like this:
<soapenv:Header>
<myroot>
<vala>somevalue</vala>
<valb>someothervalue</valb>
<valc>a third value</valc>
</myroot>
</soapenv:Header>
I have no clue how to do this.... MessageHeader has no "addNode" or nothing...
I'm also currious on how to extract the same type of information in the
resulting message.
Anyone?
Thanx
Thomas