I am using the /si qualifier on wsdl.exe to generate code from WSDL. I am
then writing a class which implements the interface - text book stuff.
I can see that the class which implements the interface has a Get/Set
property for the SOAP Header, but I am at a loss as to how I actually get
hold of the values that are in the incoming SOAP Header.
I hope the question makes sense.
Thanks, Nick
Nick Locke - 08 Nov 2007 11:04 GMT
Just to amplify that a bit, the code in my "implementation" is:
Public Property StandardHeaderValue() As StandardHeader Implements
IAutofileDemoBinding.StandardHeaderValue
Get
End Get
Set(ByVal value As StandardHeader)
End Set
End Property
So, presumably I will ultimately be able to access Header data using
"StandardHeaderValue.Whatever". My question is what I need to put between
Get and End Get to actually make the header data available to me.
Thanks
>I am using the /si qualifier on wsdl.exe to generate code from WSDL. I am
>then writing a class which implements the interface - text book stuff.
[quoted text clipped - 6 lines]
>
> Thanks, Nick