"too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:53:11Z http://stackoverflow.com/feeds/question/518181 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/518181/too-many-automatic-redirections-were-attempted-error-message-when-using-a-httpw 2 "too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NET tooleb 2009-02-05T22:04:45Z 2009-02-05T22:32:52Z <p>I am attempting to request a page like "http://www.google.com/?q=random" using the webrequest class in vb.net. we are behind a firewall, so we have to authenticate our requests. I have gotten past the authentication part by adding my credentials. But once that works it seems to go into a redirecting loop.</p> <p>Does anyone have an ideas, comments, suggetions why this is? Has anyone else experienced this problem?</p> <pre><code>Dim loHttp As HttpWebRequest = CType(WebRequest.Create(_url), HttpWebRequest) loHttp.Timeout = 10000 loHttp.Method = "GET" loHttp.KeepAlive = True loHttp.AllowAutoRedirect = True loHttp.PreAuthenticate = True Dim _cred1 As NetworkCredential = ... //this is setup //snip out this stuff loHttp.Credentials = _cc loWebResponse = loHttp.GetResponse() </code></pre> http://stackoverflow.com/questions/518181/too-many-automatic-redirections-were-attempted-error-message-when-using-a-httpw/518230#518230 5 Answer by Darryl Braaten for "too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NET Darryl Braaten 2009-02-05T22:16:53Z 2009-02-05T22:16:53Z <p>Make sure you have a cookie container setup.</p> <pre><code>CookieContainer cookieContainer = new CookieContainer(); loHttp.CookieContainer = cookieContainer; </code></pre> <p>You are probably not saving cookies and getting caught in a redirect loop.</p> http://stackoverflow.com/questions/518181/too-many-automatic-redirections-were-attempted-error-message-when-using-a-httpw/518285#518285 1 Answer by tooleb for "too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NET tooleb 2009-02-05T22:32:52Z 2009-02-05T22:32:52Z <p>I translated the C# that Darryl provided to VB and inserted it before the getResponse call.</p> <pre><code>Dim cookieContainer As CookieContainer = New CookieContainer() loHttp.CookieContainer = cookieContainer loWebResponse = loHttp.GetResponse() </code></pre>