I need to authenticate to a server which exposes a custom NTLM-based authentication scheme, using the standard HttpWebRequest object. It's pretty much basic NTLM except that during the NTLM handshake protocol I receive a cookie from the server which I must send back during the handshake, otherwise the authentication will fail.

My question is: how do I hook into the HttpWebRequest's handshake protocol so that I can add the cookies in the header, during the handshake?

link|improve this question

75% accept rate
At what point in the three way handshake is the cookie sent by the server? – feroze Feb 6 '11 at 3:24
It is sent when I receive the Type 2 message from the server – Tudor Olariu Mar 18 '11 at 14:00
feedback

1 Answer

You could do it in the Get Response method http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.getresponse.aspx

link|improve this answer
1  
No, because I need to intercept the second step in the NTLM authentication to add my custom header, but the entire authentication is made transparent by .NET; GetResponse() will only serve the final response. – Tudor Olariu Mar 18 '11 at 14:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.