I have to access a web server at http://someserver and it requires some authentication. How can I tell if it is using NTLM, Kerberos or whatever it may be?
Another way to do this is to look at the first few bytes of the header.
If it starts with Negotiate TlR
then you're doing SPNEGO over NTLM
If it starts with Negotiate YII
then you're doing SPNEGO over Kerberos.
Grant