I am facing an Ajax issue with the application I am working on. The web app is written in ASP.NET 4.5, it's more specifically derived from the default MVC sample application in Visual Studio 2012. The application is hosted on a local IIS server (Not the express version), and requires Windows authentication (currently NTLM) for client impersonation as for security reasons.
I have 2 questions here.
The website is correctly authenticating the client when browsing but for some obscure reason every Ajax calls fail in a 401 Unauthorized error (It's working when using anonymous authentication, so I guess the credentials are not encapsulated in the request?!). I had not the time yet to investigate the communication between them, but I am sure one of the guru here is able to help.
In the end the windows authentication provider will be moved to kerberos. Anything particular to be careful regarding this Ajax issue?
Please let me know if you need any other information.
Edit 1
I feel stupid ... restarting IIS solve the issue. Somedays IT is pleasure ...
Thanks to all of you.