WIA .... windows integrated authentication
I've problem i need authenticate connection from a client(CL) to a
webservice(WS)
Between CL and WS is standing WEBSEAL (something like IIS) Webseal has only
one function to authentiace client , it means stops cummunication or pass the
SOAP messages from CL to WS and backward.
Problem is I'm using WSE but kerbeross token is not inserted into a HTTP
header
as required in SPNEGO (or WIA) but is inserted into soapm message
I'd to know some way how to migrate token to HTTP header to perform
negotiation
> I'd to know some way how to migrate token to HTTP header to perform
> negotiation
Before invoking the method from the client, apply the credentials:
WebServiceClass obj = new WebServiceClass();
obj.Credentials = new NetworkCredential(...);
Read the topic of:
System.Net.NetworkCredential

Signature
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://webservices.edujini.in
-------------------
Gaurav Vaish (www.EduJini.IN) - 31 May 2006 20:44 GMT
Got one... may be of some good:
http://www.15seconds.com/issue/040603.htm

Signature
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://www.edujini.in
http://webservices.edujini.in
-------------------
>> I'd to know some way how to migrate token to HTTP header to perform
>> negotiation
[quoted text clipped - 6 lines]
> Read the topic of:
> System.Net.NetworkCredential