R
randyh
I have a Windows.Forms application that authenticates to an ASP.NET web
service using Active Directory Integrated Authentication. This has been
working fine for several months with the following code:
ServiceClient.Credentials =
System.Net.CredentialCache.DefaultNetworkCredentials;
ServiceClient.ExecuteMethod();
Recently a single user started receiving a (401) Unauthorized error every
time the ServiceClient attempts to execute a method. The same user account
can login to the web service through a web browser, but no matter what I try
I cannot get integrated auth to work with my application for this one user.
There are other accounts in the exact same OU with the same group
memberships that can use the application without any problems. There must be
something I'm missing, does anyone have any ideas?
Thanks,
Randy
service using Active Directory Integrated Authentication. This has been
working fine for several months with the following code:
ServiceClient.Credentials =
System.Net.CredentialCache.DefaultNetworkCredentials;
ServiceClient.ExecuteMethod();
Recently a single user started receiving a (401) Unauthorized error every
time the ServiceClient attempts to execute a method. The same user account
can login to the web service through a web browser, but no matter what I try
I cannot get integrated auth to work with my application for this one user.
There are other accounts in the exact same OU with the same group
memberships that can use the application without any problems. There must be
something I'm missing, does anyone have any ideas?
Thanks,
Randy