Hi
I am depending on Authorization feature of
SOAP for my webservice.
Means that i want to have something like this in my WSDL file :
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/
envelope/">
<soap:Header>
<AuthHeader xmlns="http://tempuri.org/">
<UserName>jeff</UserName>
<Password>imbatman</Password>
</AuthHeader>
</soap:Header>
</soap:Envelope>
How can i associate this with my Webservice now ??
Please help .
Thank you .