"too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T23:53:11Zhttp://stackoverflow.com/feeds/question/518181http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/518181/too-many-automatic-redirections-were-attempted-error-message-when-using-a-httpw2"too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NETtooleb2009-02-05T22:04:45Z2009-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#5182305Answer by Darryl Braaten for "too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NETDarryl Braaten2009-02-05T22:16:53Z2009-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#5182851Answer by tooleb for "too many automatic redirections were attempted" error message when using a httpWebRequest in VB.NETtooleb2009-02-05T22:32:52Z2009-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>