My scenario:
User -> Web App (ASP.NET, C# 3.5) -> Exchange
I need to pass the user's Window's account information to Exchange since it uses WIA.
I've enabled "NTLM" on my web app's properties and then I use:
request.Credentials = CredentialCache.DefaultNetworkCredentials;
It doesn't seem to be working. Is DefaultNetworkCredentials the right way to go or should I use some other method to pass the user's credentials to Exchange?