Groups | Blog | Home
all groups > dotnet web services enhancements > may 2006 >

dotnet web services enhancements : WSE with KERBEROS using SPENEGO (negotiation)


Stanislav Dvorak
5/31/2006 3:22:01 AM
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
Gaurav Vaish (www.EduJini.IN)
6/1/2006 1:00:55 AM
[quoted text, click to view]

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


--
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://webservices.edujini.in
-------------------

Gaurav Vaish (www.EduJini.IN)
6/1/2006 1:14:46 AM
Got one... may be of some good:
http://www.15seconds.com/issue/040603.htm

--
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://www.edujini.in
http://webservices.edujini.in
-------------------


[quoted text, click to view]

AddThis Social Bookmark Button