HI,
We have here an asp.net 3.5 application using NTLM based windows authentication. The system runs on a private network that actually distributed over different geographic places (connected via VPN).
We are now trying to optimize the website's performance. Because the way NTLM works, every new request to the IIS is composed with 3 different requests while the first 2 is 401 responses. We are trying to minimize the amount of these requests to be only at the beginning of the session. We found this solution. Unfortunately it didn't change anything and we keep getting this 401 response (which consumes time).
In order to see the traffic i first used the Fiddler app. Some how, when I use the fiddler, there is only 1 authentication process at the beginning of the session (exactly as I wish), but when I close the Fiddler app and check the traffic via WireShark I can see that I still have this 401 response for each request.
The clients use IE6, IIS version 6.
Can someone advise?