hi every body,
In my sharepoint 2013 uls viewer i have an unexpected error for one of web application.
No windows identity for [domain]\[username]
this raise for a lot of users .
this isn't raise any problems for my users and they can access to site but this is unexpected error in my uls viewer and i am worry about that.
before that error this medium level log is seen in uls viewer:
SPSecurityContext: Could not retrieve a valid windows identity for username '[domain]\[username]' with UPN '[username]@[domain]'. UPN is required when Kerberos constrained delegation is used. Exception: System.ServiceModel.FaultException`1[System.ServiceModel.ExceptionDetail]:
WTS0003: The caller is not authorized to access the service. (Fault Detail is equal to An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is: System.UnauthorizedAccessException: WTS0003: The caller is not authorized to access
the service.
at Microsoft.IdentityModel.WindowsTokenService.CallerSecurity.CheckCaller(WindowsIdentity callerIdentity)
at Microsoft.IdentityModel.WindowsTokenService.S4UServiceContract.PerformLogon(Func`1 logonOperation, Int32 pid)
at SyncInvokeUpnLogon(Object , Object[] , Object[] )
at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)
at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)
at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)
at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet))..
our web application upgraded from sharepoint 2010 and i migrate user to claim authentication with these commands:
$wa = Get-SPWebApplication -identity [mywebapplicationurl]
$wa.UseClaimsAuthentication = $true
$wa.Update()
$wa.MigrateUsers($true)
$wa.ProvisionGlobally()
how i can fix that problem?
thanks