ASP.Net impersonating, Kerberos  
Author Message
sedanwer





PostPosted: ASMX Web Services and XML Serialization, ASP.Net impersonating, Kerberos Top

Hi!

When I use: <identity impersonate="true" username="domain\user" password="nice" />

Then System.Security.Principal.WindowsIdentity.GetCurrent().AutheticationType is KERBEROS.

But when I use: <identity impersonate="true" /> and <authentication mode="Windows" /> and supply domain\user and nice when logging on System.Security.Principal.WindowsIdentity.GetCurrent().AutheticationType is NTLM

I need it to be KERBEROS for use when authorizing against an Oracle database.

How do I achieve this


.NET Development20  
 
 
rfreire





PostPosted: ASMX Web Services and XML Serialization, ASP.Net impersonating, Kerberos Top

Try changing your web site settings in IIS.

Edit the security settings and set "Digest authentication" (it's only valid for windows clients)

Hope it helps

Rgds

Rodrigo