ThanderMaX
unread,Aug 10, 2010, 3:18:32 AM8/10/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting
First of all I don't know how to do that via WebBrowser control (I
couldn't find any interface or method to do that, only I can see
WebBrowser.EncryptionLevelChanged Event)
But Wikipedia seems to have an easier explanation of digest
authentication.
http://en.wikipedia.org/wiki/Digest_access_authentication
which I think can be done manually via HttpWebRequest .
or another simple way (from MSDN):
CredentialCache myCache = new CredentialCache();
myCache.Add(new Uri("
http://www.contoso.com/"),"Basic",new
NetworkCredential(UserName,SecurelyStoredPassword));
myCache.Add(new Uri("
http://www.contoso.com/"),"Digest", new
NetworkCredential(UserName,SecurelyStoredPassword,Domain));
wReq.Credentials = myCache;
Posting Form data can be done manually, without WebBrowser control.
Let's see what others are saying ..