I have following setup in IIS 7.5.
- Application pool identity is set to AD user. This user is also part of IIS user group.
- Console application is deployed in directory along side IIS dir.
- Two WCF service deployed is IIS uses Windows Authentication with scheme Negoiate. Anonymous access is disabled in IIS.
Now problem:
1. From my client app in WPF, I make a service call. Say to ServiceA.
2. This does some computation and than calls the console app using UNC path.
3. The console app invokes just fine. It then do some processing with data and calls ServiceB. Here it is failing with following error 401-unauthorized as following:
The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'Negotiate'.
I tried setting Service principal/user principal but no luck. Here I assume that whatever request made by Console app is under the context of the user that I registred with Application pool as app pool identity. Is it correct? Why authentication is failing even though that user is part of Active directory?
