.NET Windows Integrated Authentication - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T16:03:42Zhttp://stackoverflow.com/feeds/question/133549http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/133549/net-windows-integrated-authentication1.NET Windows Integrated Authentication Ck2008-09-25T14:07:49Z2008-12-28T11:44:42Z
<p>I'm looking for the best/easiest way to add extensions to an existing protocol (can't change the actual protocol easily) to allow the user to do windows authentication (NTLM?) in .NET. I looked at the AuthenticationManager class already but it requires that I use Web(Http)Request which isn't an option. NegotiateStream is an option either as I want to integrate this into the existing protocol, not wrap it into a new one. Are there any options besides these two available to me ?</p>
http://stackoverflow.com/questions/133549/net-windows-integrated-authentication/133603#1336030Answer by Penguinix for .NET Windows Integrated Authentication Penguinix2008-09-25T14:17:43Z2008-09-25T14:17:43Z<p>I assume since you can't do an HTTPRequest, that this is a piece of desktop software.</p>
<p>Active Directory and LDAP are the protocols you are most likely going to be using.</p>
<p>I think <a href="http://msdn.microsoft.com/en-us/library/system.environment.aspx" rel="nofollow">System.Environment</a>, and <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.aspx" rel="nofollow">System.DirectoryServices</a> are going to be the places to look to start.</p>
<p>I like <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.directorysearcher.aspx" rel="nofollow">DirectorySearcher</a>, and <a href="http://msdn.microsoft.com/en-us/library/system.environment.username.aspx" rel="nofollow">Environment.UserName</a> for getting just about any information on a user.</p>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/133549/net-windows-integrated-authentication/133700#1337000Answer by Pent Ploompuu for .NET Windows Integrated Authentication Pent Ploompuu2008-09-25T14:29:56Z2008-09-25T14:29:56Z<p>If you can only extend your protocol then one way to do this would be to write your own Stream class that you pass to NegotiateStream and then just take the messages that NegotiateStream gives you and put in your own protocol and give responses back to NegotiateStream through your Stream class.
But if possbile, the easiest way would be to wrap your entire protocol (Stream) inside a NegotiateStream...</p>